-
Notifications
You must be signed in to change notification settings - Fork 748
Expand file tree
/
Copy pathNuGet.AotCompatibility.Test.csproj
More file actions
40 lines (38 loc) · 2.29 KB
/
NuGet.AotCompatibility.Test.csproj
File metadata and controls
40 lines (38 loc) · 2.29 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(LatestNETCoreTargetFramework)</TargetFramework>
<PublishAot>true</PublishAot>
<IlcTreatWarningsAsErrors>true</IlcTreatWarningsAsErrors>
<PackProject>false</PackProject>
<UsePublicApiAnalyzer>false</UsePublicApiAnalyzer>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\NuGet.Core\NuGet.Commands\NuGet.Commands.csproj" />
<ProjectReference Include="..\..\src\NuGet.Core\NuGet.Common\NuGet.Common.csproj" />
<ProjectReference Include="..\..\src\NuGet.Core\NuGet.Configuration\NuGet.Configuration.csproj" />
<ProjectReference Include="..\..\src\NuGet.Core\NuGet.Credentials\NuGet.Credentials.csproj" />
<ProjectReference Include="..\..\src\NuGet.Core\NuGet.DependencyResolver.Core\NuGet.DependencyResolver.Core.csproj" />
<ProjectReference Include="..\..\src\NuGet.Core\NuGet.Frameworks\NuGet.Frameworks.csproj" />
<ProjectReference Include="..\..\src\NuGet.Core\NuGet.LibraryModel\NuGet.LibraryModel.csproj" />
<ProjectReference Include="..\..\src\NuGet.Core\NuGet.Packaging\NuGet.Packaging.csproj" />
<ProjectReference Include="..\..\src\NuGet.Core\NuGet.ProjectModel\NuGet.ProjectModel.csproj" />
<ProjectReference Include="..\..\src\NuGet.Core\NuGet.Protocol\NuGet.Protocol.csproj" />
<ProjectReference Include="..\..\src\NuGet.Core\NuGet.Resolver\NuGet.Resolver.csproj" />
<ProjectReference Include="..\..\src\NuGet.Core\NuGet.Versioning\NuGet.Versioning.csproj" />
</ItemGroup>
<!-- Root all public types so ILC analyzes the full public API surface of each library. -->
<ItemGroup>
<TrimmerRootAssembly Include="NuGet.Commands" />
<TrimmerRootAssembly Include="NuGet.Common" />
<TrimmerRootAssembly Include="NuGet.Configuration" />
<TrimmerRootAssembly Include="NuGet.Credentials" />
<TrimmerRootAssembly Include="NuGet.DependencyResolver.Core" />
<TrimmerRootAssembly Include="NuGet.Frameworks" />
<TrimmerRootAssembly Include="NuGet.LibraryModel" />
<TrimmerRootAssembly Include="NuGet.Packaging" />
<TrimmerRootAssembly Include="NuGet.ProjectModel" />
<TrimmerRootAssembly Include="NuGet.Protocol" />
<TrimmerRootAssembly Include="NuGet.Resolver" />
<TrimmerRootAssembly Include="NuGet.Versioning" />
</ItemGroup>
</Project>