|
1 | 1 | <Project> |
2 | 2 | <PropertyGroup> |
| 3 | + <!-- Version --> |
3 | 4 | <PackageVersion Condition="'$(PackageVersion)' == ''">0.0.0-dev</PackageVersion> |
| 5 | + |
| 6 | + <!-- Package Metadata --> |
| 7 | + <Authors>Lee Oades</Authors> |
| 8 | + <Company>Lee Oades</Company> |
| 9 | + <Copyright>Copyright © $(Authors) $([System.DateTime]::Now.Year)</Copyright> |
| 10 | + <PackageProjectUrl>https://github.com/leeoades/FunctionalStateMachine</PackageProjectUrl> |
| 11 | + <RepositoryUrl>https://github.com/leeoades/FunctionalStateMachine</RepositoryUrl> |
| 12 | + <RepositoryType>git</RepositoryType> |
| 13 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 14 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 15 | + <PackageTags>state-machine;functional;actor-model;fsm;dotnet</PackageTags> |
| 16 | + <PackageReleaseNotes>See CHANGELOG.md for release notes</PackageReleaseNotes> |
| 17 | + |
| 18 | + <!-- Build Settings --> |
| 19 | + <LangVersion>latest</LangVersion> |
| 20 | + <Nullable>enable</Nullable> |
| 21 | + <ImplicitUsings>disable</ImplicitUsings> |
| 22 | + <TreatWarningsAsErrors>false</TreatWarningsAsErrors> |
| 23 | + |
| 24 | + <!-- Source Link --> |
| 25 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 26 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 27 | + <IncludeSymbols>true</IncludeSymbols> |
| 28 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
4 | 29 | </PropertyGroup> |
| 30 | + |
| 31 | + <!-- Include README in packages --> |
| 32 | + <ItemGroup> |
| 33 | + <None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" /> |
| 34 | + </ItemGroup> |
| 35 | + |
| 36 | + <!-- Source Link for debugging --> |
| 37 | + <ItemGroup> |
| 38 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> |
| 39 | + </ItemGroup> |
5 | 40 | </Project> |
0 commit comments