-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e07a3e4
commit d4f1f1b
Showing
5 changed files
with
448 additions
and
417 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 31 additions & 30 deletions
61
src/Microsoft.VisualStudio.SlnGen.UnitTests/Microsoft.VisualStudio.SlnGen.UnitTests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,32 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net472;net8.0;net9.0</TargetFrameworks> | ||
<TargetFrameworks Condition="'$(TargetDotNet10)' == 'true'">$(TargetFrameworks);net10.0</TargetFrameworks> | ||
<IsPackable>false</IsPackable> | ||
<NoWarn>$(NoWarn);SA1600</NoWarn> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="EnvironmentAbstractions" /> | ||
<PackageReference Include="EnvironmentAbstractions.TestHelpers" /> | ||
<PackageReference Include="McMaster.Extensions.CommandLineUtils" /> | ||
<PackageReference Include="Microsoft.Build" ExcludeAssets="Runtime" /> | ||
<PackageReference Include="Microsoft.Build.Runtime" IncludeAssets="None" GeneratePathProperty="true" /> | ||
<PackageReference Include="Microsoft.Build.Utilities.Core" ExcludeAssets="Runtime" /> | ||
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" /> | ||
<PackageReference Include="MSBuild.ProjectCreation" /> | ||
<PackageReference Include="Newtonsoft.Json" /> | ||
<PackageReference Include="Shouldly" /> | ||
<PackageReference Include="xunit" /> | ||
<PackageReference Include="xunit.runner.visualstudio" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Microsoft.VisualStudio.SlnGen\Microsoft.VisualStudio.SlnGen.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="..\Microsoft.VisualStudio.SlnGen\*.targets" Link="build\%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" /> | ||
<Content Include="..\Microsoft.VisualStudio.SlnGen\*.targets" Link="buildMultiTargeting\%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" /> | ||
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" /> | ||
</ItemGroup> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net472;net8.0;net9.0</TargetFrameworks> | ||
<TargetFrameworks Condition="'$(TargetDotNet10)' == 'true'">$(TargetFrameworks);net10.0</TargetFrameworks> | ||
<IsPackable>false</IsPackable> | ||
<NoWarn>$(NoWarn);SA1600</NoWarn> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="EnvironmentAbstractions" /> | ||
<PackageReference Include="EnvironmentAbstractions.TestHelpers" /> | ||
<PackageReference Include="McMaster.Extensions.CommandLineUtils" /> | ||
<PackageReference Include="Microsoft.Build" ExcludeAssets="Runtime" /> | ||
<PackageReference Include="Microsoft.Build.Runtime" IncludeAssets="None" GeneratePathProperty="true" /> | ||
<PackageReference Include="Microsoft.Build.Utilities.Core" ExcludeAssets="Runtime" /> | ||
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" /> | ||
<PackageReference Include="Microsoft.VisualStudio.SolutionPersistence" /> | ||
<PackageReference Include="MSBuild.ProjectCreation" /> | ||
<PackageReference Include="Newtonsoft.Json" /> | ||
<PackageReference Include="Shouldly" /> | ||
<PackageReference Include="xunit" /> | ||
<PackageReference Include="xunit.runner.visualstudio" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Microsoft.VisualStudio.SlnGen\Microsoft.VisualStudio.SlnGen.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="..\Microsoft.VisualStudio.SlnGen\*.targets" Link="build\%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" /> | ||
<Content Include="..\Microsoft.VisualStudio.SlnGen\*.targets" Link="buildMultiTargeting\%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" /> | ||
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" /> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.