|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>netstandard2.0</TargetFramework> |
5 | | - <LangVersion>latest</LangVersion> |
6 | | - <Nullable>enable</Nullable> |
7 | | - <IncludeBuildOutput>false</IncludeBuildOutput> |
8 | | - <PackageId>BeaKona.AutoInterfaceGenerator</PackageId> |
9 | | - <Authors>BeaKona</Authors> |
10 | | - <Description>A C# Source Generator which redirects all interface-calls to a backing member.</Description> |
11 | | - <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
12 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
13 | | - <RepositoryUrl>https://github.com/beakona/AutoInterface</RepositoryUrl> |
14 | | - <RepositoryType>git</RepositoryType> |
15 | | - <TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);_AddAnalyzersToOutput</TargetsForTfmSpecificContentInPackage> |
16 | | - <Version>1.0.45</Version> |
17 | | - <IsRoslynComponent>true</IsRoslynComponent> |
18 | | - <EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules> |
19 | | - </PropertyGroup> |
20 | | - |
21 | | - <PropertyGroup> |
22 | | - <PackageScribanIncludeSource>true</PackageScribanIncludeSource> |
23 | | - </PropertyGroup> |
24 | | - |
25 | | - <ItemGroup> |
26 | | - <PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.9.2" PrivateAssets="all" /> |
27 | | - <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" PrivateAssets="all" /> |
28 | | - <PackageReference Include="Microsoft.CSharp" Version="4.7.0" PrivateAssets="all" /> |
29 | | - <PackageReference Include="Scriban" Version="5.9.1" PrivateAssets="all" IncludeAssets="build" /> |
30 | | - <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" PrivateAssets="all" /> |
31 | | - </ItemGroup> |
32 | | - |
33 | | - <ItemGroup> |
34 | | - <ProjectReference Include="..\BeaKona.AutoInterfaceAttributes\BeaKona.AutoInterfaceAttributes.csproj" PrivateAssets="all" /> |
35 | | - </ItemGroup> |
36 | | - |
37 | | - <ItemGroup> |
38 | | - <Compile Update="AutoInterfaceResource.Designer.cs"> |
39 | | - <DesignTime>True</DesignTime> |
40 | | - <AutoGen>True</AutoGen> |
41 | | - <DependentUpon>AutoInterfaceResource.resx</DependentUpon> |
42 | | - </Compile> |
43 | | - </ItemGroup> |
44 | | - |
45 | | - <ItemGroup> |
46 | | - <EmbeddedResource Update="AutoInterfaceResource.resx"> |
47 | | - <Generator>ResXFileCodeGenerator</Generator> |
48 | | - <LastGenOutput>AutoInterfaceResource.Designer.cs</LastGenOutput> |
49 | | - </EmbeddedResource> |
50 | | - </ItemGroup> |
51 | | - |
52 | | - <Target Name="_AddAnalyzersToOutput"> |
53 | | - <ItemGroup> |
54 | | - <TfmSpecificPackageFile Include="$(OutputPath)\BeaKona.AutoInterfaceGenerator.dll" PackagePath="analyzers/dotnet/cs" Pack="true" Visible="false" /> |
55 | | - <TfmSpecificPackageFile Include="$(OutputPath)\BeaKona.AutoInterfaceAttributes.dll" PackagePath="analyzers/dotnet/cs" Pack="true" Visible="false" /> |
56 | | - <TfmSpecificPackageFile Include="$(OutputPath)\BeaKona.AutoInterfaceAttributes.dll" PackagePath="lib/netstandard2.0" Pack="true" Visible="true" /> |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>netstandard2.0</TargetFramework> |
| 5 | + <LangVersion>latest</LangVersion> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <IncludeBuildOutput>false</IncludeBuildOutput> |
| 8 | + <PackageId>BeaKona.AutoInterfaceGenerator</PackageId> |
| 9 | + <Authors>BeaKona</Authors> |
| 10 | + <Description>A C# Source Generator which redirects all interface-calls to a backing member.</Description> |
| 11 | + <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
| 12 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 13 | + <RepositoryUrl>https://github.com/beakona/AutoInterface</RepositoryUrl> |
| 14 | + <RepositoryType>git</RepositoryType> |
| 15 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 16 | + <TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);_AddAnalyzersToOutput</TargetsForTfmSpecificContentInPackage> |
| 17 | + <Version>1.0.45</Version> |
| 18 | + <IsRoslynComponent>true</IsRoslynComponent> |
| 19 | + <EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules> |
| 20 | + </PropertyGroup> |
| 21 | + |
| 22 | + <PropertyGroup> |
| 23 | + <PackageScribanIncludeSource>true</PackageScribanIncludeSource> |
| 24 | + </PropertyGroup> |
| 25 | + |
| 26 | + <ItemGroup> |
| 27 | + <PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.9.2" PrivateAssets="all" /> |
| 28 | + <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" PrivateAssets="all" /> |
| 29 | + <PackageReference Include="Microsoft.CSharp" Version="4.7.0" PrivateAssets="all" /> |
| 30 | + <PackageReference Include="Scriban" Version="5.9.1" PrivateAssets="all" IncludeAssets="build" /> |
| 31 | + <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" PrivateAssets="all" /> |
| 32 | + </ItemGroup> |
| 33 | + |
| 34 | + <ItemGroup> |
| 35 | + <ProjectReference Include="..\BeaKona.AutoInterfaceAttributes\BeaKona.AutoInterfaceAttributes.csproj" PrivateAssets="all" /> |
| 36 | + </ItemGroup> |
| 37 | + |
| 38 | + <ItemGroup> |
| 39 | + <None Include="..\README.md" Pack="true" PackagePath="\"/> |
57 | 40 | </ItemGroup> |
58 | | - </Target> |
| 41 | + |
| 42 | + <ItemGroup> |
| 43 | + <Compile Update="AutoInterfaceResource.Designer.cs"> |
| 44 | + <DesignTime>True</DesignTime> |
| 45 | + <AutoGen>True</AutoGen> |
| 46 | + <DependentUpon>AutoInterfaceResource.resx</DependentUpon> |
| 47 | + </Compile> |
| 48 | + </ItemGroup> |
| 49 | + |
| 50 | + <ItemGroup> |
| 51 | + <EmbeddedResource Update="AutoInterfaceResource.resx"> |
| 52 | + <Generator>ResXFileCodeGenerator</Generator> |
| 53 | + <LastGenOutput>AutoInterfaceResource.Designer.cs</LastGenOutput> |
| 54 | + </EmbeddedResource> |
| 55 | + </ItemGroup> |
| 56 | + |
| 57 | + <Target Name="_AddAnalyzersToOutput"> |
| 58 | + <ItemGroup> |
| 59 | + <TfmSpecificPackageFile Include="$(OutputPath)\BeaKona.AutoInterfaceGenerator.dll" PackagePath="analyzers/dotnet/cs" Pack="true" Visible="false" /> |
| 60 | + <TfmSpecificPackageFile Include="$(OutputPath)\BeaKona.AutoInterfaceAttributes.dll" PackagePath="analyzers/dotnet/cs" Pack="true" Visible="false" /> |
| 61 | + <TfmSpecificPackageFile Include="$(OutputPath)\BeaKona.AutoInterfaceAttributes.dll" PackagePath="lib/netstandard2.0" Pack="true" Visible="true" /> |
| 62 | + </ItemGroup> |
| 63 | + </Target> |
59 | 64 |
|
60 | 65 | </Project> |
0 commit comments