mirror of
https://github.com/amerkoleci/Vortice.Win32.git
synced 2026-01-14 16:16:04 +08:00
53 lines
2.0 KiB
XML
53 lines
2.0 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<RepositoryUrl>https://github.com/amerkoleci/Vortice.Win32</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
</PropertyGroup>
|
|
|
|
<!-- Version -->
|
|
<PropertyGroup>
|
|
<VersionPrefix>2.2.0</VersionPrefix>
|
|
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<LangVersion>latest</LangVersion>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
<DebugType>embedded</DebugType>
|
|
<Features>strict</Features>
|
|
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
|
|
<RestoreConfigFile>$(MSBuildThisFileDirectory)NuGet.config</RestoreConfigFile>
|
|
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
|
|
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<NoWarn>$(NoWarn);AD0001;CS1591;CS1701;CA2252;</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
|
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Authors>Amer Koleci and Contributors</Authors>
|
|
<Company>Amer Koleci</Company>
|
|
<Copyright>Copyright (c) Amer Koleci and Contributors</Copyright>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
|
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
|
|
</PropertyGroup>
|
|
|
|
<!-- https://github.com/dotnet/sourcelink -->
|
|
<PropertyGroup>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
<IncludeSymbols>false</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|