-
Notifications
You must be signed in to change notification settings - Fork 426
Expand file tree
/
Copy pathSystem.CommandLine.Tests.csproj
More file actions
53 lines (44 loc) · 2.66 KB
/
Copy pathSystem.CommandLine.Tests.csproj
File metadata and controls
53 lines (44 loc) · 2.66 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(NetMinimum);$(NetFrameworkMinimum)</TargetFrameworks>
<GenerateProgramFile>false</GenerateProgramFile>
<DefaultExcludesInProjectFolder>$(DefaultExcludesInProjectFolder);TestApps\**</DefaultExcludesInProjectFolder>
<NoWarn>$(NoWarn);CS8632</NoWarn> <!-- Suppress nullable warning for files included as links -->
</PropertyGroup>
<ItemGroup>
<Content Include="TestApps/**/*.csproj" CopyToOutputDirectory="PreserveNewest" />
<Content Include="TestApps/**/*.cs" CopyToOutputDirectory="PreserveNewest" />
<Content Include="..\System.CommandLine\build\System.CommandLine.targets" CopyToOutputDirectory="PreserveNewest" Link="TestApps\System.CommandLine.targets" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\System.CommandLine.Suggest\DotnetMuxer.cs" Link="Utility\DotnetMuxer.cs" />
<Compile Include="..\System.CommandLine\LocalizationResources.cs" Link="LocalizationResources.cs" />
<Compile Include="..\System.CommandLine\Properties\Resources.Designer.cs" Link="Properties\Resources.Designer.cs" />
<Compile Include="..\System.CommandLine\Help\HelpBuilder.cs" Link="Help\HelpBuilder.cs" />
<Compile Include="..\System.CommandLine\Help\HelpBuilder.Default.cs" Link="Help\HelpBuilder.Default.cs" />
<Compile Include="..\System.CommandLine\Help\HelpBuilderExtensions.cs" Link="Help\HelpBuilderExtensions" />
<Compile Include="..\System.CommandLine\Help\HelpContext.cs" Link="Help\HelpContext.cs" />
<Compile Include="..\System.CommandLine\Help\TwoColumnHelpRow.cs" Link="Help\TwoColumnHelpRow.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\System.CommandLine\System.CommandLine.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ApprovalTests" />
<PackageReference Include="AwesomeAssertions" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" />
</ItemGroup>
<ItemGroup Condition="'$(DisableArcade)' == '1'">
<PackageReference Include="Microsoft.NET.Test.Sdk" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework'">
<!-- TODO: Remove System.Memory explicit package reference when the repo's version got updated to 4.6.3. -->
<PackageReference Include="System.Memory" VersionOverride="4.6.3" />
<PackageReference Include="Microsoft.Bcl.Memory" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="..\System.CommandLine\Properties\Resources.resx" LogicalName="System.CommandLine.Properties.Resources.resources" />
</ItemGroup>
</Project>