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 12
12
<!-- It's still PackageReference, so project intermediates are still created. -->
13
13
<MSBuildProjectExtensionsPath >$(RestorePackagesPath)obj/</MSBuildProjectExtensionsPath >
14
14
<!-- 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 >
16
16
<!-- If a package is resolved to a fallback folder, it may not be downloaded.-->
17
17
<DisableImplicitNuGetFallbackFolder >true</DisableImplicitNuGetFallbackFolder >
18
18
<!-- 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 4
4
</ItemGroup >
5
5
<PropertyGroup >
6
6
<OutputType >Exe</OutputType >
7
- <TargetFramework >net6.0 </TargetFramework >
7
+ <TargetFramework >$(LowestSupportedTargetFramework) </TargetFramework >
8
8
</PropertyGroup >
9
9
10
10
</Project >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net6.0 </TargetFramework >
4
+ <TargetFramework >$(LowestSupportedTargetFramework) </TargetFramework >
5
5
<Nullable >enable</Nullable >
6
6
7
7
<IsPackable >false</IsPackable >
You can’t perform that action at this time.
0 commit comments