File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed
test/integrationTests/testAssets/slnWithCsproj Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1+ <Project >
2+ <PropertyGroup >
3+ <!--
4+ Defines the lowest supported target framework for the extension.
5+ Used by server download / integration tests to ensure they run when only this SDK is installed.
6+ -->
7+ <LowestSupportedTargetFramework >net6.0</LowestSupportedTargetFramework >
8+ </PropertyGroup >
9+ </Project >
Original file line number Diff line number Diff line change 1212 <!-- It's still PackageReference, so project intermediates are still created. -->
1313 <MSBuildProjectExtensionsPath >$(RestorePackagesPath)obj/</MSBuildProjectExtensionsPath >
1414 <!-- We use the lowest supported target framework so we can build and run integration tests against the lowest supported target framework -->
15- <TargetFramework >net6.0 </TargetFramework >
15+ <TargetFramework >$(LowestSupportedTargetFramework) </TargetFramework >
1616 <!-- If a package is resolved to a fallback folder, it may not be downloaded.-->
1717 <DisableImplicitNuGetFallbackFolder >true</DisableImplicitNuGetFallbackFolder >
1818 <!-- We don't want to build this project, so we do not need the reference assemblies for the framework we chose.-->
Original file line number Diff line number Diff line change 44 </ItemGroup >
55 <PropertyGroup >
66 <OutputType >Exe</OutputType >
7- <TargetFramework >net6.0 </TargetFramework >
7+ <TargetFramework >$(LowestSupportedTargetFramework) </TargetFramework >
88 </PropertyGroup >
99
1010</Project >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >net6.0 </TargetFramework >
4+ <TargetFramework >$(LowestSupportedTargetFramework) </TargetFramework >
55 <Nullable >enable</Nullable >
66
77 <IsPackable >false</IsPackable >
You can’t perform that action at this time.
0 commit comments