forked from NuGetPackageExplorer/NuGetPackageExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
48 lines (41 loc) · 2.76 KB
/
Directory.Build.props
File metadata and controls
48 lines (41 loc) · 2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project>
<PropertyGroup>
<Authors>Luan Nguyen,Julian Verdurmen,Oren Novotny</Authors>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<NoPackageAnalysis>true</NoPackageAnalysis>
<PackageIconUrl>https://raw.githubusercontent.com/NuGetPackageExplorer/NuGetPackageExplorer/master/images/nuget.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/NuGetPackageExplorer/NuGetPackageExplorer</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/NuGetPackageExplorer/NuGetPackageExplorer/master/LICENSE</PackageLicenseUrl>
<Copyright>© 2018 .NET Foundation and Contributors</Copyright>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)NuGetPackageExplorer.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisDictionary>$(MSBuildThisFileDirectory)CodeAnalysisDictionary.xml</CodeAnalysisDictionary>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DefaultLanguage>en-US</DefaultLanguage>
<NoWarn>1701;1702;1705;1591;NU1701</NoWarn>
<IsTypesProject>$(MSBuildProjectName.Contains('Types'))</IsTypesProject>
<IsLegacyProject>$(MSBuildProjectName.Equals('PackageExplorer'))</IsLegacyProject>
<IsPackageProject>$(MSBuildProjectName.Contains('.Package'))</IsPackageProject>
<DebugType>embedded</DebugType>
<ExtrasEnableWpfProjectSetup>true</ExtrasEnableWpfProjectSetup>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<UseWPF>true</UseWPF>
</PropertyGroup>
<PropertyGroup>
<TargetPlatformMinVersion>10.0.10563.0</TargetPlatformMinVersion>
<TargetPlatformVersion>10.0.17134.0</TargetPlatformVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="2.2.38" PrivateAssets="all" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02" PrivateAssets="All"/>
<Compile Include="$(MSBuildThisFileDirectory)Common\CommonAssemblyInfo.cs" LinkBase="Properties" />
</ItemGroup>
<PropertyGroup>
<DefineConstants Condition="'$(Configuration)' == 'Store' ">$(DefineConstants);STORE</DefineConstants>
<DefineConstants Condition="'$(Configuration)' == 'Nightly' ">$(DefineConstants);NIGHTLY</DefineConstants>
<DefineConstants Condition="'$(Configuration)' == 'Choco' ">$(DefineConstants);CHOCO</DefineConstants>
<DefineConstants Condition="'$(Configuration)' == 'Release' ">$(DefineConstants);ZIP</DefineConstants>
<DefineConstants Condition="'$(Configuration)' == 'Debug' ">$(DefineConstants);ZIP</DefineConstants>
</PropertyGroup>
</Project>