This repository was archived by the owner on Apr 20, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +28
-4
lines changed Expand file tree Collapse file tree 6 files changed +28
-4
lines changed Original file line number Diff line number Diff line change 5
5
<Target Name =" SetTelemetryProfile" >
6
6
<SetEnvVar Name =" DOTNET_CLI_TELEMETRY_PROFILE" Value =" $(DOTNET_CLI_TELEMETRY_PROFILE);https://github.com/dotnet/cli;$(BuildNumber)" />
7
7
</Target >
8
+
9
+ <ItemGroup Condition =" '$(TargetFrameworkIdentifier)' == '.NETCoreApp'
10
+ and $(MicrosoftNETCoreAppRefPackageVersion.StartsWith('$(_TargetFrameworkVersionWithoutV)'))" >
11
+ <FrameworkReference
12
+ Update =" Microsoft.NETCore.App"
13
+ TargetingPackVersion =" $(MicrosoftNETCoreAppRefPackageVersion)"
14
+ RuntimeFrameworkVersion =" $(MicrosoftNETCoreAppRefPackageVersion)" />
15
+ </ItemGroup >
8
16
</Project >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<Dependencies >
3
3
<ProductDependencies >
4
+ <Dependency Name =" Microsoft.NETCore.App.Ref" Version =" 3.0.0-preview7-27826-20" >
5
+ <Uri >https://github.com/dotnet/core-setup</Uri >
6
+ <Sha >ee0c7ead1a46f06f98aff9102b785f532b71da9c</Sha >
7
+ </Dependency >
4
8
<Dependency Name =" Microsoft.TemplateEngine.Cli" Version =" 1.0.2-beta5.19320.1" >
5
9
<Uri >https://github.com/dotnet/templating</Uri >
6
10
<Sha >cd8a65408312bf4a92de7e97948782f9f88471e6</Sha >
Original file line number Diff line number Diff line change 12
12
</PropertyGroup >
13
13
<!-- Production Dependencies -->
14
14
<PropertyGroup >
15
+ <MicrosoftNETCoreAppRefPackageVersion >3.0.0-preview7-27826-20</MicrosoftNETCoreAppRefPackageVersion >
15
16
<DotNetCoreSdkLKGVersion >3.0.100-preview7-012358</DotNetCoreSdkLKGVersion >
16
17
<MicrosoftAspNetCoreDeveloperCertificatesXPlatPackageVersion >3.0.0-preview7.19325.7</MicrosoftAspNetCoreDeveloperCertificatesXPlatPackageVersion >
17
18
<MicrosoftNETCoreDotNetHostResolverPackageVersion >2.2.1</MicrosoftNETCoreDotNetHostResolverPackageVersion >
Original file line number Diff line number Diff line change @@ -28,9 +28,6 @@ function InitializeCustomSDKToolset {
28
28
}
29
29
30
30
$cli = InitializeDotnetCli - install:$true
31
- InstallDotNetSharedFramework " 1.1.2"
32
- InstallDotNetSharedFramework " 2.0.0"
33
- InstallDotNetSharedFramework " 2.2.0"
34
31
35
32
CreateBuildEnvScript
36
33
CreateTestEnvScript
Original file line number Diff line number Diff line change 1
1
{
2
2
"tools" : {
3
- "dotnet" : " 3.0.100-preview7-012358"
3
+ "dotnet" : " 3.0.100-preview7-012358" ,
4
+ "runtimes" : {
5
+ "dotnet" : [
6
+ " 1.1.2" ,
7
+ " 2.0.0" ,
8
+ " 2.2.0" ,
9
+ " $(MicrosoftNETCoreAppRefPackageVersion)"
10
+ ]
11
+ }
4
12
},
5
13
"msbuild-sdks" : {
6
14
"Microsoft.DotNet.Arcade.Sdk" : " 1.0.0-beta.19323.4"
Original file line number Diff line number Diff line change 75
75
DestinationFiles =" @(SdksContent -> '$(PublishDir)Sdks/%(RecursiveDir)%(Filename)%(Extension)')" />
76
76
</Target >
77
77
78
+ <Target Name =" CopyRuntimeConfiguration"
79
+ AfterTargets =" Publish" >
80
+ <Copy SourceFiles =" $(ProjectRuntimeConfigFilePath)"
81
+ DestinationFiles =" $(PublishDir)dotnet.runtimeconfig.json" />
82
+ </Target >
83
+
78
84
<Target Name =" ChmodPublishDir"
79
85
AfterTargets =" PublishMSBuildExtensions"
80
86
Condition =" '$(OS)' != 'Windows_NT' " >
You can’t perform that action at this time.
0 commit comments