mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-09 23:15:40 +00:00
68 lines
2.7 KiB
XML
68 lines
2.7 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net7.0;net6.0;netstandard2.1</TargetFrameworks>
|
|
<LangVersion>11.0</LangVersion>
|
|
<Optimize>true</Optimize>
|
|
<ImplicitUsings>true</ImplicitUsings>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
|
<DebugType>pdbonly</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<VersionPrefix>4.0.0</VersionPrefix>
|
|
<Authors>Oliver Booth</Authors>
|
|
<Nullable>enable</Nullable>
|
|
<NeutralLanguage>en</NeutralLanguage>
|
|
<RepositoryUrl>https://github.com/oliverbooth/X10D</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<Description>Extension methods on crack.</Description>
|
|
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
|
|
<PackageIcon>branding_Icon.png</PackageIcon>
|
|
<PackageIconUrl/>
|
|
<PackageTags>dotnet extension-methods</PackageTags>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(SolutionDir)/CHANGELOG.md"))</PackageReleaseNotes>
|
|
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(VersionSuffix)' != '' And '$(BuildNumber)' == ''">
|
|
<Version>$(VersionPrefix)-$(VersionSuffix)</Version>
|
|
<AssemblyVersion>$(VersionPrefix).0</AssemblyVersion>
|
|
<FileVersion>$(VersionPrefix).0</FileVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(VersionSuffix)' != '' And '$(BuildNumber)' != ''">
|
|
<Version>$(VersionPrefix)-$(VersionSuffix).$(BuildNumber)</Version>
|
|
<AssemblyVersion>$(VersionPrefix).$(BuildNumber)</AssemblyVersion>
|
|
<FileVersion>$(VersionPrefix).$(BuildNumber)</FileVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(VersionSuffix)' == ''">
|
|
<Version>$(VersionPrefix)</Version>
|
|
<AssemblyVersion>$(VersionPrefix).0</AssemblyVersion>
|
|
<FileVersion>$(VersionPrefix).0</FileVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\branding_Icon.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath/>
|
|
</None>
|
|
<None Include="..\LICENSE.md">
|
|
<Pack>True</Pack>
|
|
<PackagePath/>
|
|
</None>
|
|
<None Include="..\README.md">
|
|
<Pack>True</Pack>
|
|
<PackagePath/>
|
|
</None>
|
|
<None Include="..\CHANGELOG.md">
|
|
<Pack>True</Pack>
|
|
<PackagePath/>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project> |