-
Notifications
You must be signed in to change notification settings - Fork 746
Expand file tree
/
Copy pathNuGet.Packaging.csproj
More file actions
115 lines (104 loc) · 4.64 KB
/
NuGet.Packaging.csproj
File metadata and controls
115 lines (104 loc) · 4.64 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>NuGet's understanding of packages. Reading nuspec, nupkgs and package signing.</Description>
<TargetFrameworks>$(TargetFrameworksLibrary)</TargetFrameworks>
<TargetFramework />
<NoWarn>$(NoWarn);CS1591;CS1574;CS1573;CS1572;RS0041</NoWarn>
<NoWarn Condition="'$(TargetFramework)' != '$(NETFXTargetFramework)'">$(NoWarn);CS0414</NoWarn>
<PackProject>true</PackProject>
<Shipping>true</Shipping>
<IncludeInVSIX>true</IncludeInVSIX>
<XPLATProject>true</XPLATProject>
<UsePublicApiAnalyzer>perTfm</UsePublicApiAnalyzer>
</PropertyGroup>
<PropertyGroup Condition=" '$(IsVsixBuild)' == 'true' ">
<TargetFrameworks />
<TargetFramework>$(NETFXTargetFramework)</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\NuGet.Configuration\NuGet.Configuration.csproj" />
<ProjectReference Include="..\NuGet.Versioning\NuGet.Versioning.csproj" />
</ItemGroup>
<ItemGroup Label="NuGet Shared">
<Compile Include="$(SharedDirectory)\DeconstructionExtensions.cs" />
<Compile Include="$(SharedDirectory)\EqualityUtility.cs" />
<Compile Include="$(SharedDirectory)\HashCodeCombiner.cs" />
<Compile Include="$(SharedDirectory)\IsExternalInit.cs" />
<Compile Include="$(SharedDirectory)\NoAllocEnumerateExtensions.cs" />
<Compile Include="$(SharedDirectory)\NullableAttributes.cs" />
<Compile Include="$(SharedDirectory)\RequiredModifierAttributes.cs" />
<Compile Include="$(SharedDirectory)\SharedExtensions.cs" />
<Compile Include="$(SharedDirectory)\SimplePool.cs" />
<Compile Include="$(SharedDirectory)\StringBuilderPool.cs" />
<Compile Include="$(SharedDirectory)\TaskResult.cs" />
<Compile Include="$(SharedDirectory)\XmlUtility.cs" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == '$(NETFXTargetFramework)'">
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.IO.Compression" />
<Reference Include="System.Security" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="compiler\resources\*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="System.Text.Json" Condition="'$(TargetFrameworkIdentifier)' != '.NETCoreApp'" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' != '$(NETFXTargetFramework)'">
<PackageReference Include="System.Security.Cryptography.Pkcs" />
</ItemGroup>
<ItemGroup>
<Compile Update="Signing\DerEncoding\SR.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>SR.resx</DependentUpon>
</Compile>
<Compile Update="Strings.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Strings.resx</DependentUpon>
</Compile>
<Compile Update="PackageCreation\Resources\NuGetResources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>NuGetResources.resx</DependentUpon>
</Compile>
<Compile Update="Rules\AnalysisResources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>AnalysisResources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Rules\AnalysisResources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>AnalysisResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Signing\DerEncoding\SR.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>SR.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Strings.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="PackageCreation\Resources\NuGetResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>NuGetResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Dotnet.Integration.Test" />
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
<InternalsVisibleTo Include="NuGet.CommandLine.FuncTest" />
<InternalsVisibleTo Include="NuGet.Commands.Test" />
<InternalsVisibleTo Include="NuGet.Packaging.FuncTest" />
<InternalsVisibleTo Include="NuGet.Packaging.Test" />
<InternalsVisibleTo Include="Microsoft.Internal.NuGet.Testing.SignedPackages" />
</ItemGroup>
</Project>