-
Notifications
You must be signed in to change notification settings - Fork 746
Expand file tree
/
Copy pathNuGet.Configuration.csproj
More file actions
63 lines (56 loc) · 2.53 KB
/
NuGet.Configuration.csproj
File metadata and controls
63 lines (56 loc) · 2.53 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>NuGet's configuration settings implementation.</Description>
<NoWarn>$(NoWarn);CS1591;RS0041</NoWarn>
<TargetFrameworks Condition="'$(IsVsixBuild)' != 'true'">$(TargetFrameworksLibrary)</TargetFrameworks>
<TargetFramework Condition="'$(IsVsixBuild)' == 'true'">$(NETFXTargetFramework)</TargetFramework>
<PackProject>true</PackProject>
<Shipping>true</Shipping>
<IncludeInVSIX>true</IncludeInVSIX>
<XPLATProject>true</XPLATProject>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\NuGet.Common\NuGet.Common.csproj" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == '$(NETFXTargetFramework)' ">
<Reference Include="System.Security" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Security.Cryptography.ProtectedData" Condition=" '$(TargetFramework)' != '$(NETFXTargetFramework)' " />
</ItemGroup>
<ItemGroup>
<Compile Update="Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup Label="NuGet Shared">
<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)\XmlUtility.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
<InternalsVisibleTo Include="NuGet.Commands.FuncTest" />
<InternalsVisibleTo Include="NuGet.Commands.Test" />
<InternalsVisibleTo Include="NuGet.Configuration.Test" />
<InternalsVisibleTo Include="NuGet.Credentials.Test" />
<InternalsVisibleTo Include="NuGet.DependencyResolver.Core.Tests" />
<InternalsVisibleTo Include="NuGet.SolutionRestoreManager.Test" />
<InternalsVisibleTo Include="NuGet.VisualStudio.Implementation.Test" />
<InternalsVisibleTo Include="Test.Utility" />
</ItemGroup>
</Project>