All checks were successful
Publish NuGets / build (release) Successful in 46s
63 lines
3.2 KiB
XML
63 lines
3.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<LangVersion>14</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<IsRoslynComponent>true</IsRoslynComponent>
|
|
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
|
|
<IsPackable>true</IsPackable>
|
|
<DevelopmentDependency>true</DevelopmentDependency>
|
|
<!-- Don't include build output in lib/ - this is an analyzer/generator package -->
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
<NoPackageAnalysis>true</NoPackageAnalysis>
|
|
<NoWarn>$(NoWarn);NU5128</NoWarn>
|
|
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
|
|
|
|
<Company>Svrnty</Company>
|
|
<Authors>Mathias Beaulieu-Duncan</Authors>
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<RepositoryUrl>https://git.openharbor.io/svrnty/dotnet-cqrs</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<Description>Source Generator for Svrnty.CQRS.Grpc - generates .proto files and gRPC service implementations from commands and queries</Description>
|
|
|
|
<!-- Disable symbol packages for analyzer/generator packages (prevents NU5017 error) -->
|
|
<IncludeSymbols>false</IncludeSymbols>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\icon.png" Pack="true" PackagePath="" CopyToOutputDirectory="Always" />
|
|
<None Include="..\README.md" Pack="true" PackagePath="" CopyToOutputDirectory="Always" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.0.0-2.final" PrivateAssets="all" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all" />
|
|
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.0.0" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Include targets and props files in both build and buildTransitive for proper dependency flow -->
|
|
<None Include="build\Svrnty.CQRS.Grpc.Generators.targets" Pack="true" PackagePath="build" />
|
|
<None Include="build\Svrnty.CQRS.Grpc.Generators.targets" Pack="true" PackagePath="buildTransitive" />
|
|
<None Include="build\Svrnty.CQRS.Grpc.Generators.props" Pack="true" PackagePath="build" />
|
|
<None Include="build\Svrnty.CQRS.Grpc.Generators.props" Pack="true" PackagePath="buildTransitive" />
|
|
</ItemGroup>
|
|
|
|
<!-- Use the recommended pattern to include the generator DLL in the package -->
|
|
<PropertyGroup>
|
|
<TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);IncludeGeneratorAssemblyInPackage</TargetsForTfmSpecificContentInPackage>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="IncludeGeneratorAssemblyInPackage">
|
|
<ItemGroup>
|
|
<!-- Include in analyzers folder for Roslyn source generator -->
|
|
<TfmSpecificPackageFile Include="$(OutputPath)$(AssemblyName).dll" PackagePath="analyzers/dotnet/cs" />
|
|
<!-- Include in build folder for MSBuild task (WriteProtoFileTask) -->
|
|
<TfmSpecificPackageFile Include="$(OutputPath)$(AssemblyName).dll" PackagePath="build" />
|
|
</ItemGroup>
|
|
</Target>
|
|
</Project>
|