-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use T4 template instead of Mustache
- Loading branch information
Showing
41 changed files
with
3,759 additions
and
436 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,37 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<RootNamespace>Raiqub.Generators.$(MSBuildProjectName)</RootNamespace> | ||
<AssemblyName>$(RootNamespace)</AssemblyName> | ||
<SolutionDir Condition="'$(SolutionDir)' == ''">$(MSBuildThisFileDirectory)</SolutionDir> | ||
<PackageOutputPath>$(SolutionDir)artifacts</PackageOutputPath> | ||
<LangVersion>12</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>true</ImplicitUsings> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<RootNamespace>Raiqub.Generators.$(MSBuildProjectName)</RootNamespace> | ||
<AssemblyName>$(RootNamespace)</AssemblyName> | ||
<SolutionDir Condition="'$(SolutionDir)' == ''">$(MSBuildThisFileDirectory)</SolutionDir> | ||
<PackageOutputPath>$(SolutionDir)artifacts</PackageOutputPath> | ||
<LangVersion>12</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>true</ImplicitUsings> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<EnableNETAnalyzers>true</EnableNETAnalyzers> | ||
<AnalysisMode>Recommended</AnalysisMode> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<Description>A source generator for C# that uses Roslyn to create extensions and parsers for enumerations</Description> | ||
<Authors>Fabricio Godoy</Authors> | ||
<Copyright>Copyright © Fabricio Godoy</Copyright> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<RepositoryUrl>https://github.com/skarllot/EnumUtilities</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageProjectUrl>https://github.com/skarllot/EnumUtilities</PackageProjectUrl> | ||
<PackageTags> | ||
generator;source;enum;enumeration;reflection;attribute;tostring;isdefined;enummember;description;display; | ||
shortname;resourcetype;resource;parse;tryparse;ignorecase;stringcomparison;factory;extension;validation; | ||
codegen;fast | ||
</PackageTags> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<Description>A source generator for C# that uses Roslyn to create extensions and parsers for enumerations</Description> | ||
<Authors>Fabricio Godoy</Authors> | ||
<Copyright>Copyright © Fabricio Godoy</Copyright> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<RepositoryUrl>https://github.com/skarllot/EnumUtilities</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageProjectUrl>https://github.com/skarllot/EnumUtilities</PackageProjectUrl> | ||
<PackageTags> | ||
generator;source;enum;enumeration;reflection;attribute;tostring;isdefined;enummember;description;display; | ||
shortname;resourcetype;resource;parse;tryparse;ignorecase;stringcomparison;factory;extension;validation; | ||
codegen;fast | ||
</PackageTags> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1" PrivateAssets="All" /> | ||
<PackageReference Include="Nerdbank.GitVersioning" Version="3.6.133" PrivateAssets="All" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1" PrivateAssets="All" /> | ||
<PackageReference Include="Nerdbank.GitVersioning" Version="3.6.133" PrivateAssets="All" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.