49 lines
2.3 KiB
XML
49 lines
2.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Version>0.2.0</Version>
|
|
<Title>NodePipeline.Engine</Title>
|
|
<Authors>THE_KONDRAT</Authors>
|
|
<Description>NodePipeline Engine with runtime and source generator</Description>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<PublishAot>true</PublishAot>
|
|
<IlcGenerateCompleteTypeMetadata>true</IlcGenerateCompleteTypeMetadata>
|
|
|
|
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
|
|
<CompilerGeneratedFilesOutputPath>obj\Generated</CompilerGeneratedFilesOutputPath>
|
|
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\NodePipeline.Engine.CodeGeneration\bin\$(Configuration)\netstandard2.0\NodePipeline.Engine.CodeGeneration.dll"
|
|
Pack="true"
|
|
PackagePath="analyzers/dotnet/cs"/>
|
|
|
|
<None Include="$(NuGetPackageRoot)nodepipeline.engine.abstractions\0.1.0\lib\netstandard2.0\NodePipeline.Engine.Abstractions.dll"
|
|
Pack="true"
|
|
PackagePath="analyzers/dotnet/cs"/>
|
|
<None Include="$(NuGetPackageRoot)nodepipeline.abstractions\0.1.2\lib\netstandard2.0\NodePipeline.Abstractions.dll"
|
|
Pack="true"
|
|
PackagePath="analyzers/dotnet/cs"/>
|
|
<None Include="$(NuGetPackageRoot)nodepipeline.configuration.abstractions\0.1.3\lib\netstandard2.0\NodePipeline.Configuration.Abstractions.dll"
|
|
Pack="true"
|
|
PackagePath="analyzers/dotnet/cs"/>
|
|
|
|
<None Include="..\NodePipeline.Engine.CodeGeneration.Abstractions\bin\$(Configuration)\netstandard2.0\NodePipeline.Engine.CodeGeneration.Abstractions.dll"
|
|
Pack="true"
|
|
PackagePath="analyzers/dotnet/cs"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NodePipeline.Abstractions" Version="0.2.0"/>
|
|
<PackageReference Include="NodePipeline.Configuration.Abstractions" Version="0.2.0"/>
|
|
<PackageReference Include="NodePipeline.Engine.Abstractions" Version="0.2.0"/>
|
|
</ItemGroup>
|
|
</Project>
|