162 строки
7.5 KiB
XML
162 строки
7.5 KiB
XML
<Project>
|
|
|
|
<PropertyGroup>
|
|
<Authors>Microsoft.Toolkit</Authors>
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
|
<NoPackageAnalysis>true</NoPackageAnalysis>
|
|
<GitHubOrganizationUrl>https://github.com/windows-toolkit</GitHubOrganizationUrl>
|
|
<GitHubRepoUrl>$(GitHubOrganizationUrl)/Lottie-Windows</GitHubRepoUrl>
|
|
<PackageIconUrl>https://raw.githubusercontent.com/windows-toolkit/WindowsCommunityToolkit/master/build/nuget.png</PackageIconUrl>
|
|
<PackageProjectUrl>$(GitHubRepoUrl)</PackageProjectUrl>
|
|
<PackageLicenseUrl>$(GitHubRepoUrl)/blob/master/license.md</PackageLicenseUrl>
|
|
<PackageReleaseNotes>Release $(GitHubRepoUrl)/releases</PackageReleaseNotes>
|
|
<Copyright>(c) .NET Foundation and Contributors. All rights reserved.</Copyright>
|
|
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)Toolkit.ruleset</CodeAnalysisRuleSet>
|
|
<DefaultLanguage>en-US</DefaultLanguage>
|
|
<IsDesignProject>$(MSBuildProjectName.Contains('.Design'))</IsDesignProject>
|
|
<IsTestProject>$(MSBuildProjectName.Contains('Test'))</IsTestProject>
|
|
<IsUwpProject Condition="'$(IsDesignProject)' != 'true'">$(MSBuildProjectName.Contains('Uwp'))</IsUwpProject>
|
|
<IsWin32Project Condition="'$(IsDesignProject)' != 'true'">$(MSBuildProjectName.Contains('Win32'))</IsWin32Project>
|
|
<IsWpfProject Condition="'$(IsDesignProject)' != 'true'">$(MSBuildProjectName.Contains('Wpf'))</IsWpfProject>
|
|
<IsFormsProject Condition="'$(IsDesignProject)' != 'true'">$(MSBuildProjectName.Contains('Forms'))</IsFormsProject>
|
|
<IsSampleProject>$(MSBuildProjectName.Contains('Sample'))</IsSampleProject>
|
|
<DefaultTargetPlatformVersion>18362</DefaultTargetPlatformVersion>
|
|
<DefaultTargetPlatformMinVersion>16299</DefaultTargetPlatformMinVersion>
|
|
<PackageOutputPath>$(MSBuildThisFileDirectory)bin\nupkg</PackageOutputPath>
|
|
<OutputPath>bin\$(Platform)\$(Configuration)</OutputPath>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<!-- Default to not creating a NuPkg. Set this to True in projects that should generate a NuPkg -->
|
|
<IsPackable>False</IsPackable>
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
<!-- TODO - temporarily turn off warnings about XML comments while we get the build working on GitHub -->
|
|
<NoWarn>1591</NoWarn>
|
|
|
|
<!-- TODO - turning docs on always to shut up style cop rule -->
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<SignAssembly Condition="'$(SignAssembly)' == '' and '$(IsUwpProject)' != 'true'" >true</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)toolkit.snk</AssemblyOriginatorKeyFile>
|
|
</PropertyGroup>
|
|
|
|
<Choose>
|
|
<When Condition="'$(IsWin32Project)' == 'true' or '$(IsWpfProject)' == 'true' or '$(IsFormsProject)' == 'true'">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">15.0</VisualStudioVersion>
|
|
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
|
|
|
<!-- Need 19H1 or later.
|
|
|
|
When changing this value, ensure the SDK is installed with the build process.
|
|
Need to check several files:
|
|
- /azure-pipelines.yml
|
|
|
|
This also needs to be installed on your local machine. Can do this with PowerShell:
|
|
./build/Install-WindowsSDKISO.ps1 18362
|
|
-->
|
|
<TargetPlatformVersion>10.0.18362.0</TargetPlatformVersion>
|
|
<TargetPlatformMinVersion>10.0.17134.0</TargetPlatformMinVersion>
|
|
|
|
<!-- Compiler -->
|
|
<FileAlignment>512</FileAlignment>
|
|
<HighEntropyVA>true</HighEntropyVA>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<WarningsAsErrors />
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<NoWarn>1591</NoWarn>
|
|
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
|
|
<OutputPath>bin\$(Platform)\$(Configuration)</OutputPath>
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
|
|
<Optimize>false</Optimize>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
</When>
|
|
</Choose>
|
|
|
|
<Choose>
|
|
<When Condition="'$(OutputType)' == 'library' or '$(OutputType)' == 'winmdobj'">
|
|
<PropertyGroup>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
</When>
|
|
</Choose>
|
|
|
|
<Choose>
|
|
<When Condition="'$(OutputType)' == 'winmdobj'">
|
|
<PropertyGroup>
|
|
<GenerateLibraryLayout>true</GenerateLibraryLayout>
|
|
</PropertyGroup>
|
|
</When>
|
|
</Choose>
|
|
|
|
<Choose>
|
|
<When Condition="'$(OutputType)' == 'winmdobj' and '$(SourceLinkEnabled)' != 'false'">
|
|
<PropertyGroup>
|
|
<!-- Optional: Declare that the Repository URL can be published to NuSpec -->
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<!-- Optional: Embed source files that are not tracked by the source control manager to the PDB -->
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
<!-- Optional: Include PDB in the built .nupkg -->
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.SourceLink.Vsts.Git" Version="1.0.0-beta-62925-02" PrivateAssets="All"/>
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-62925-02" PrivateAssets="All"/>
|
|
</ItemGroup>
|
|
</When>
|
|
</Choose>
|
|
|
|
<Choose>
|
|
<When Condition="'$(IsTestProject)' != 'true' and '$(IsSampleProject)' != 'true' and '$(IsDesignProject)' != 'true'">
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.5.22" PrivateAssets="all" />
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="all" />
|
|
|
|
<!-- <EmbeddedResource Include="**\*.rd.xml" />
|
|
<Page Include="**\*.xaml" Exclude="**\bin\**\*.xaml;**\obj\**\*.xaml" SubType="Designer" Generator="MSBuild:Compile" />
|
|
<Compile Update="**\*.xaml.cs" DependentUpon="%(Filename)" /> -->
|
|
</ItemGroup>
|
|
</When>
|
|
</Choose>
|
|
|
|
<PropertyGroup>
|
|
|
|
<!-- 8002 is a strong named -> non-strong-named reference -->
|
|
<!-- This is valid for platforms other than .NET Framework (and is needed for the UWP targets -->
|
|
<NoWarn>$(NoWarn);8002</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Nerdbank.GitVersioning" Version="3.5.119" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="ChangeAssemblyFileVersion" AfterTargets="GetBuildVersion">
|
|
<PropertyGroup>
|
|
<AssemblyFileVersion>$(AssemblyVersion)</AssemblyFileVersion>
|
|
</PropertyGroup>
|
|
</Target>
|
|
|
|
<ItemGroup>
|
|
<AdditionalFiles Include="$(MSBuildThisFileDirectory)stylecop.json">
|
|
<Link>stylecop.json</Link>
|
|
</AdditionalFiles>
|
|
</ItemGroup>
|
|
</Project> |