|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>netstandard2.0</TargetFramework> |
5 | | - <IsRoslynComponent>true</IsRoslynComponent> |
6 | | - <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles> |
7 | | - <CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)Generated</CompilerGeneratedFilesOutputPath> |
8 | | - <Configurations>Debug;Release;DebugGenerator</Configurations> |
9 | | - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
10 | | - <DevelopmentDependency>true</DevelopmentDependency> |
11 | | - <IncludeBuildOutput>false</IncludeBuildOutput> |
12 | | - <LangVersion>latest</LangVersion> |
13 | | - <Nullable>enable</Nullable> |
14 | | - <SourceGenerator_EnableLogging>True</SourceGenerator_EnableLogging> |
15 | | - <SourceGenerator_EnableDebug>False</SourceGenerator_EnableDebug> |
16 | | - <SourceGenerator_DetailedLog>True</SourceGenerator_DetailedLog> |
17 | | - <SourceGenerator_IntellisenseFix>True</SourceGenerator_IntellisenseFix> |
18 | | - <Company>codecentric</Company> |
19 | | - <Copyright>(c) codecentric</Copyright> |
20 | | - <PackageProjectUrl>https://github.com/codecentric/net_automatic_interface</PackageProjectUrl> |
21 | | - <Description>Source Generator to create an Interface from a class definition</Description> |
22 | | - <RepositoryUrl>https://github.com/codecentric/net_automatic_interface.git</RepositoryUrl> |
23 | | - <RepositoryType>git</RepositoryType> |
24 | | - <PackageTags>interface; class; Source Generator</PackageTags> |
25 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
26 | | - <EnableNETAnalyzers>True</EnableNETAnalyzers> |
27 | | - <AnalysisLevel>latest-Recommended</AnalysisLevel> |
28 | | - <Version>5.2.0</Version> |
29 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
30 | | - <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
31 | | - <NoWarn>1701;1702;NU5128</NoWarn> |
32 | | - <PackageReleaseNotes>mproves inheritdoc so that developer documentation is properly referenced on the autogenerated interfaces</PackageReleaseNotes> |
33 | | - </PropertyGroup> |
34 | | - |
35 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugGenerator|AnyCPU'"> |
36 | | - <DefineConstants>TRACE;DEBUGGENERATOR</DefineConstants> |
37 | | - |
38 | | - </PropertyGroup> |
39 | | - |
40 | | - <ItemGroup> |
41 | | - <PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.3"> |
42 | | - <PrivateAssets>all</PrivateAssets> |
43 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
44 | | - </PackageReference> |
45 | | - <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.5.0" PrivateAssets="all" /> |
46 | | - </ItemGroup> |
47 | | - |
48 | | - <ItemGroup> |
49 | | - <None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" /> |
50 | | - <None Include="../../README.md" Pack="true" PackagePath="\" /> |
51 | | - </ItemGroup> |
| 2 | + <PropertyGroup> |
| 3 | + <TargetFramework>netstandard2.0</TargetFramework> |
| 4 | + <IsRoslynComponent>true</IsRoslynComponent> |
| 5 | + <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles> |
| 6 | + <CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)Generated</CompilerGeneratedFilesOutputPath> |
| 7 | + <Configurations>Debug;Release;DebugGenerator</Configurations> |
| 8 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 9 | + <DevelopmentDependency>true</DevelopmentDependency> |
| 10 | + <IncludeBuildOutput>false</IncludeBuildOutput> |
| 11 | + <LangVersion>latest</LangVersion> |
| 12 | + <Nullable>enable</Nullable> |
| 13 | + <SourceGenerator_EnableLogging>True</SourceGenerator_EnableLogging> |
| 14 | + <SourceGenerator_EnableDebug>False</SourceGenerator_EnableDebug> |
| 15 | + <SourceGenerator_DetailedLog>True</SourceGenerator_DetailedLog> |
| 16 | + <SourceGenerator_IntellisenseFix>True</SourceGenerator_IntellisenseFix> |
| 17 | + <Company>codecentric</Company> |
| 18 | + <Copyright>(c) codecentric</Copyright> |
| 19 | + <PackageProjectUrl>https://github.com/codecentric/net_automatic_interface</PackageProjectUrl> |
| 20 | + <Description>Source Generator to create an Interface from a class definition</Description> |
| 21 | + <RepositoryUrl>https://github.com/codecentric/net_automatic_interface.git</RepositoryUrl> |
| 22 | + <RepositoryType>git</RepositoryType> |
| 23 | + <PackageTags>interface; class; Source Generator</PackageTags> |
| 24 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 25 | + <EnableNETAnalyzers>True</EnableNETAnalyzers> |
| 26 | + <AnalysisLevel>latest-Recommended</AnalysisLevel> |
| 27 | + <Version>5.2.0</Version> |
| 28 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 29 | + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
| 30 | + <NoWarn>1701;1702;NU5128</NoWarn> |
| 31 | + <PackageReleaseNotes>mproves inheritdoc so that developer documentation is properly referenced on the autogenerated interfaces</PackageReleaseNotes> |
| 32 | + </PropertyGroup> |
| 33 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugGenerator|AnyCPU'"> |
| 34 | + <DefineConstants>TRACE;DEBUGGENERATOR</DefineConstants> |
| 35 | + </PropertyGroup> |
| 36 | + <ItemGroup> |
| 37 | + <PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.3"> |
| 38 | + <PrivateAssets>all</PrivateAssets> |
| 39 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 40 | + </PackageReference> |
| 41 | + <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.5.0" PrivateAssets="all" /> |
| 42 | + </ItemGroup> |
| 43 | + <ItemGroup> |
| 44 | + <None |
| 45 | + Include="$(OutputPath)\$(AssemblyName).dll" |
| 46 | + Pack="true" |
| 47 | + PackagePath="analyzers/dotnet/cs" |
| 48 | + Visible="false" |
| 49 | + /> |
| 50 | + <None Include="../../README.md" Pack="true" PackagePath="\" /> |
| 51 | + </ItemGroup> |
52 | 52 | </Project> |
0 commit comments