csbindgen/GroupedNativeMethodsGenerator/GroupedNativeMethodsGenerator.csproj

35 lines
1.4 KiB
XML
Raw Normal View History

2023-04-14 17:54:15 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>11</LangVersion>
<IsRoslynComponent>true</IsRoslynComponent>
<AnalyzerLanguage>cs</AnalyzerLanguage>
2023-04-15 18:07:21 +01:00
<TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);PackBuildOutputs</TargetsForTfmSpecificContentInPackage>
<IncludeBuildOutput>false</IncludeBuildOutput>
<DevelopmentDependency>true</DevelopmentDependency>
<IncludeSymbols>false</IncludeSymbols>
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
<PackageTags>interop</PackageTags>
<PackageId>csbindgen</PackageId>
<Description>Code generator for csbindgen.</Description>
2023-04-14 17:54:15 +01:00
</PropertyGroup>
<ItemGroup>
2023-04-15 18:07:21 +01:00
<None Include="../Icon.png" Pack="true" PackagePath="/" />
2023-04-14 17:54:15 +01:00
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.3.1" />
</ItemGroup>
2023-04-15 18:07:21 +01:00
<!-- for nuget publish -->
<Target Name="PackBuildOutputs" DependsOnTargets="SatelliteDllsProjectOutputGroup;DebugSymbolsProjectOutputGroup">
<ItemGroup>
<TfmSpecificPackageFile Include="$(TargetDir)\*.dll" PackagePath="analyzers\dotnet\cs" />
<TfmSpecificPackageFile Include="@(SatelliteDllsProjectOutputGroupOutput->'%(FinalOutputPath)')" PackagePath="analyzers\dotnet\cs\%(SatelliteDllsProjectOutputGroupOutput.Culture)\" />
</ItemGroup>
</Target>
2023-04-14 17:54:15 +01:00
</Project>