1- <Project Sdk =" Microsoft.NET.Sdk" >
2-
3- <PropertyGroup >
4- <TargetFramework >netstandard2.0</TargetFramework >
5- <IsPackable >true</IsPackable >
6- <Nullable >enable</Nullable >
7- <LangVersion >latest</LangVersion >
8-
9- <GeneratePackageOnBuild >true</GeneratePackageOnBuild > <!-- Generates a package at build -->
10- <IncludeBuildOutput >false</IncludeBuildOutput > <!-- Do not include the generator as a lib dependency -->
11- <IsDeveloperDependency >true</IsDeveloperDependency >
12- <DevelopmentDependency >true</DevelopmentDependency >
13- <EnforceExtendedAnalyzerRules >true</EnforceExtendedAnalyzerRules >
14- <IsRoslynComponent >true</IsRoslynComponent >
15- <NoWarn >NU5128</NoWarn >
16-
17- <!-- Main package name -->
18- <PackageId >CodeOfChaos.Ansi.Generators</PackageId >
19- <Version >1.0.0-preview.1 </Version >
20- <Authors >Anna Sas</Authors >
21- <Description >A library to write Ansi Colored text as a stringbuilder</Description >
22- <PackageProjectUrl >https://github.com/code-of-chaos/cs-code_of_chaos-ansi/</PackageProjectUrl >
23- <PackageTags >ansi input stringbuilder</PackageTags >
24- <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
25- <PublishRepositoryUrl >true</PublishRepositoryUrl >
26- <IncludeSymbols >true</IncludeSymbols >
27- <DebugType >embedded</DebugType >
28- <PackageLicenseFile >LICENSE</PackageLicenseFile >
29- <PackageReadmeFile >README.md</PackageReadmeFile >
30- <PackageIcon >icon.png</PackageIcon >
31- </PropertyGroup >
32-
33- <ItemGroup >
34- <None Include =" ../../LICENSE" Pack =" true" PackagePath =" " Visible =" false" />
35- <None Include =" ../../README.md" Pack =" true" PackagePath =" " />
36- <None Include =" ../../assets/icon.png" Pack =" true" PackagePath =" " Visible =" false" />
37- </ItemGroup >
38-
39- <!-- Package dependencies -->
40- <ItemGroup >
41- <PackageReference Include =" Microsoft.CodeAnalysis.Analyzers" Version =" 3.11.0" PrivateAssets =" all" />
42- <PackageReference Include =" Microsoft.CodeAnalysis.Common" Version =" 4.12.0" PrivateAssets =" all" />
43- <PackageReference Include =" Microsoft.CodeAnalysis.CSharp" Version =" 4.12.0" PrivateAssets =" all" />
44- <PackageReference Include =" CodeOfChaos.GeneratorTools" Version =" 1.2.0 " Pack =" true" GeneratePathProperty =" true" PrivateAssets =" all" />
45- </ItemGroup >
46-
47- <ItemGroup >
48- <None Include =" $(OutputPath)\$(AssemblyName).dll" Pack =" true" PackagePath =" analyzers/dotnet/cs" Visible =" false" />
49- <None Include =" $(PkgCodeOfChaos_GeneratorTools)\lib\netstandard2.0\*.dll" Pack =" true" PackagePath =" analyzers/dotnet/cs" Visible =" false" />
50- </ItemGroup >
51-
1+ <Project Sdk =" Microsoft.NET.Sdk" >
2+
3+ <PropertyGroup >
4+ <TargetFramework >netstandard2.0</TargetFramework >
5+ <IsPackable >true</IsPackable >
6+ <Nullable >enable</Nullable >
7+ <LangVersion >latest</LangVersion >
8+
9+ <GeneratePackageOnBuild >true</GeneratePackageOnBuild > <!-- Generates a package at build -->
10+ <IncludeBuildOutput >false</IncludeBuildOutput > <!-- Do not include the generator as a lib dependency -->
11+ <IsDeveloperDependency >true</IsDeveloperDependency >
12+ <DevelopmentDependency >true</DevelopmentDependency >
13+ <EnforceExtendedAnalyzerRules >true</EnforceExtendedAnalyzerRules >
14+ <IsRoslynComponent >true</IsRoslynComponent >
15+ <NoWarn >NU5128</NoWarn >
16+
17+ <!-- Main package name -->
18+ <PackageId >CodeOfChaos.Ansi.Generators</PackageId >
19+ <Version >1.0.0-preview.2 </Version >
20+ <Authors >Anna Sas</Authors >
21+ <Description >A library to write Ansi Colored text as a stringbuilder</Description >
22+ <PackageProjectUrl >https://github.com/code-of-chaos/cs-code_of_chaos-ansi/</PackageProjectUrl >
23+ <PackageTags >ansi input stringbuilder</PackageTags >
24+ <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
25+ <PublishRepositoryUrl >true</PublishRepositoryUrl >
26+ <IncludeSymbols >true</IncludeSymbols >
27+ <DebugType >embedded</DebugType >
28+ <PackageLicenseFile >LICENSE</PackageLicenseFile >
29+ <PackageReadmeFile >README.md</PackageReadmeFile >
30+ <PackageIcon >icon.png</PackageIcon >
31+ </PropertyGroup >
32+
33+ <ItemGroup >
34+ <None Include =" ../../LICENSE" Pack =" true" PackagePath =" " Visible =" false" />
35+ <None Include =" ../../README.md" Pack =" true" PackagePath =" " />
36+ <None Include =" ../../assets/icon.png" Pack =" true" PackagePath =" " Visible =" false" />
37+ </ItemGroup >
38+
39+ <!-- Package dependencies -->
40+ <ItemGroup >
41+ <PackageReference Include =" Microsoft.CodeAnalysis.Analyzers" Version =" 3.11.0" PrivateAssets =" all" />
42+ <PackageReference Include =" Microsoft.CodeAnalysis.Common" Version =" 4.12.0" PrivateAssets =" all" />
43+ <PackageReference Include =" Microsoft.CodeAnalysis.CSharp" Version =" 4.12.0" PrivateAssets =" all" />
44+ <PackageReference Include =" CodeOfChaos.GeneratorTools" Version =" 1.3.1 " Pack =" true" GeneratePathProperty =" true" PrivateAssets =" all" />
45+ </ItemGroup >
46+
47+ <ItemGroup >
48+ <None Include =" $(OutputPath)\$(AssemblyName).dll" Pack =" true" PackagePath =" analyzers/dotnet/cs" Visible =" false" />
49+ <None Include =" $(PkgCodeOfChaos_GeneratorTools)\lib\netstandard2.0\*.dll" Pack =" true" PackagePath =" analyzers/dotnet/cs" Visible =" false" />
50+ </ItemGroup >
51+
5252</Project >
0 commit comments