-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
42 lines (37 loc) · 1.81 KB
/
Directory.Build.props
File metadata and controls
42 lines (37 loc) · 1.81 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
42
<Project>
<PropertyGroup>
<!-- Version -->
<PackageVersion Condition="'$(PackageVersion)' == ''">0.0.0-dev</PackageVersion>
<!-- Package Metadata -->
<Authors>Lee Oades</Authors>
<Company>Lee Oades</Company>
<Copyright>Copyright © $(Authors) $([System.DateTime]::Now.Year)</Copyright>
<PackageProjectUrl>https://github.com/leeoades/FunctionalStateMachine</PackageProjectUrl>
<RepositoryUrl>https://github.com/leeoades/FunctionalStateMachine</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>state-machine;functional;actor-model;fsm;dotnet</PackageTags>
<PackageReleaseNotes Condition="'$(PackageReleaseNotes)' == ''">See CHANGELOG.md for release notes</PackageReleaseNotes>
<!-- Build Settings -->
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<!-- Source Link -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<!-- Include README and CHANGELOG in packages -->
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)CHANGELOG.md" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)AI-USAGE-GUIDE.md" Pack="true" PackagePath="\" />
</ItemGroup>
<!-- Source Link for debugging -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>