-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathInstall-Scripts.Test.csproj
58 lines (54 loc) · 2.73 KB
/
Install-Scripts.Test.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Install_Scripts.Test</RootNamespace>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\.gitattributes" />
<None Remove="Assets\InstallationScriptTests.json" />
<None Remove="Assets\InstallationScriptTestsWithMultipleSdkFields.json" />
<None Remove="Assets\InstallationScriptTestsWithVersionFieldInTheMiddle.json" />
<None Remove="Assets\InstallationScriptTestsWithWindowsLineEndings.json" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\InstallationScriptTests.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Assets\InstallationScriptTestsWithWindowsLineEndings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Assets\InstallationScriptTestsWithMultipleSdkFields.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Assets\InstallationScriptTestsWithVersionFieldInTheMiddle.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Assets\GlobalJson\*.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="Microsoft.DotNet.Cli.Utils" Version="2.2.402" />
<PackageReference Include="NuGet.Frameworks" Version="6.8.1" />
<PackageReference Include="NuGet.Versioning" Version="6.8.1" />
<PackageReference Include="NuGet.Packaging" Version="6.8.1" />
<PackageReference Include="NuGet.Packaging.Core" Version="6.8.0" />
<PackageReference Include="NuGet.ProjectModel" Version="6.8.0" />
<PackageReference Include="Microsoft.Build" Version="16.3.0" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="16.3.0" />
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Verify.Xunit" Version="19.10.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="1.3.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>