-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunctionalStateMachine.CommandRunner.csproj
More file actions
41 lines (34 loc) · 1.84 KB
/
FunctionalStateMachine.CommandRunner.csproj
File metadata and controls
41 lines (34 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- Package metadata -->
<Description>Command execution framework for FunctionalStateMachine with dependency injection support and source generation</Description>
<!-- XML Documentation -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
<!-- Polyfills for C# 9+ features on netstandard2.0 -->
<ItemGroup>
<PackageReference Include="PolySharp" Version="1.15.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FunctionalStateMachine.CommandRunner.Generator\FunctionalStateMachine.CommandRunner.Generator.csproj"
OutputItemType="Analyzer"
ReferenceOutputAssembly="false" />
</ItemGroup>
<ItemGroup>
<None Include="..\FunctionalStateMachine.CommandRunner.Generator\bin\$(Configuration)\netstandard2.0\FunctionalStateMachine.CommandRunner.Generator.dll"
Pack="true"
PackagePath="analyzers/dotnet/cs"
Visible="false" />
<None Include="..\FunctionalStateMachine.CommandRunner.Generator\bin\$(Configuration)\netstandard2.0\FunctionalStateMachine.CommandRunner.Generator.pdb"
Pack="true"
PackagePath="analyzers/dotnet/cs"
Visible="false"
Condition="Exists('..\FunctionalStateMachine.CommandRunner.Generator\bin\$(Configuration)\netstandard2.0\FunctionalStateMachine.CommandRunner.Generator.pdb')" />
</ItemGroup>
</Project>