| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project>
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <SolutionDirectory>$(MSBuildThisFileDirectory)</SolutionDirectory>
- </PropertyGroup>
- <!-- Version Configuration -->
- <PropertyGroup>
- <!-- Base version for stable releases -->
- <VersionPrefix>5.3.1</VersionPrefix>
- <!--
- IsPreviewBuild: Set to 'true' for preview builds targeting MonoGame 3.8.5
- Can be overridden via command line: dotnet build /p:IsPreviewBuild=true
- -->
- <IsPreviewBuild Condition="'$(IsPreviewBuild)' == ''">false</IsPreviewBuild>
- <!--
- PreviewLabel: The preview label to append (e.g., "preview.1", "alpha.1")
- Only used when IsPreviewBuild=true
- -->
- <PreviewLabel Condition="'$(PreviewLabel)' == ''">preview.1</PreviewLabel>
- <!-- Build the final version string -->
- <VersionSuffix Condition="'$(IsPreviewBuild)' == 'true'">$(PreviewLabel)</VersionSuffix>
- <Version Condition="'$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</Version>
- <Version Condition="'$(VersionSuffix)' == ''">$(VersionPrefix)</Version>
- </PropertyGroup>
- <PropertyGroup>
- <Authors>MonoGame Extended and contributors</Authors>
- <PackageProjectUrl>https://github.com/MonoGame-Extended/MonoGame-Extended</PackageProjectUrl>
- <RepositoryUrl>https://github.com/MonGame-Extended/MonoGame-Extended</RepositoryUrl>
- <RepositoryType>git</RepositoryType>
- <RepositoryBranch>develop</RepositoryBranch>
- <NeutralLanguage>en</NeutralLanguage>
- <PackageIcon>logo-nuget-128.png</PackageIcon>
- <PackageReadmeFile>README.md</PackageReadmeFile>
- <PackageLicenseExpression>MIT</PackageLicenseExpression>
- </PropertyGroup>
- <ItemGroup>
- <!-- path must be relative to the individual csproj's not this .targets file -->
- <None Include="../../logos/logo-nuget-128.png" Pack="true" PackagePath="" />
- <None Include="../../README.md" Pack="true" PackagePath="" />
- <None Include="../../CHANGELOG.md" Pack="false" />
- </ItemGroup>
- </Project>
|