Skip to content

Commit 7a1cf45

Browse files
committed
Updated to .NET 6.0.0 rc 1
1 parent 6a75df4 commit 7a1cf45

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "6.0.100-preview.7.21379.14"
3+
"version": "6.0.100-rc.1.21458.32"
44
}
55
}

gm_dotnet_native/external_includes/netcore/hostfxr.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ struct hostfxr_initialize_parameters
8888
// Number of argv arguments
8989
// argv
9090
// Command-line arguments for running an application (as if through the dotnet executable).
91+
// Only command-line arguments which are accepted by runtime installation are supported, SDK/CLI commands are not supported.
92+
// For example 'app.dll app_argument_1 app_argument_2`.
9193
// parameters
9294
// Optional. Additional parameters for initialization
9395
// host_context_handle

runtime.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44
<PropertyGroup>
55
<TargetFramework>net6.0</TargetFramework>
66

7-
<BundledNETCoreVersion>6.0.0-preview.7.21377.19</BundledNETCoreVersion>
7+
<BundledNETCoreVersion>6.0.0-rc.1.21451.13</BundledNETCoreVersion>
88

99
<NETCoreDownloadUrl Condition="$(NETCoreSdkRuntimeIdentifier) == 'win-x64'">
10-
https://download.visualstudio.microsoft.com/download/pr/9a772ee7-45f6-43da-9ffb-741be2cb43c5/42ed070d0e80e569fb8f58c72beb94e2/aspnetcore-runtime-6.0.0-preview.7.21378.6-win-x64.zip
10+
https://download.visualstudio.microsoft.com/download/pr/5982a3a4-8fad-42d4-88ad-de225c2c649d/1466da352753f9672ef0345388c99b65/aspnetcore-runtime-6.0.0-rc.1.21452.15-win-x64.zip
1111
</NETCoreDownloadUrl>
1212

1313
<NETCoreDownloadUrl Condition="$(NETCoreSdkRuntimeIdentifier) == 'linux-x64'">
14-
https://download.visualstudio.microsoft.com/download/pr/898bd961-c1fe-4e22-8692-d488ee838afd/315180a646a83063ceaae7a8ab9804cf/aspnetcore-runtime-6.0.0-preview.7.21378.6-linux-x64.tar.gz
14+
https://download.visualstudio.microsoft.com/download/pr/e9095f79-357a-4497-b3ba-e8185c6eba0d/fddccdf4461763768811fdf87b5f20d9/aspnetcore-runtime-6.0.0-rc.1.21452.15-linux-x64.tar.gz
1515
</NETCoreDownloadUrl>
1616

1717
<NETCoreDownloadUrl Condition="$(NETCoreSdkRuntimeIdentifier) == 'osx-x64'">
18-
https://download.visualstudio.microsoft.com/download/pr/629234db-ff5f-4e82-a824-713936f04165/dc8ed7dac6fea4980e561ff8b89404be/aspnetcore-runtime-6.0.0-preview.7.21378.6-osx-x64.tar.gz
18+
https://download.visualstudio.microsoft.com/download/pr/42ea9052-db98-425e-ae9c-3a2aeb0275f7/308d109019cdb4578ec94d697ee48b48/aspnetcore-runtime-6.0.0-rc.1.21452.15-osx-x64.tar.gz
1919
</NETCoreDownloadUrl>
2020
</PropertyGroup>
2121

0 commit comments

Comments
 (0)