-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge latest standalone-template into feature/DllImportGenerator (#1031)
* Fix runsettings generation * Update standalone-template for recent infrastructure changes (#1024) * Update to Arcade 6.0.0-beta.21226.16 * Update dependency for using custom runtime version * Update README * Don't use custom runtime in Ancillary.Interop Co-authored-by: Santiago Fernandez Madero <[email protected]>
- Loading branch information
1 parent
88a7894
commit 57b11ae
Showing
7 changed files
with
32 additions
and
22 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
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
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,15 +1,17 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Dependencies> | ||
<ProductDependencies> | ||
<Dependency Name="Microsoft.NETCore.App" Version="6.0.0-alpha.1.20514.9"> | ||
<!-- This VS redist package is used as a way to get a non-shipping version number | ||
when using a custom runtime version. --> | ||
<Dependency Name="VS.Redist.Common.NetCore.SharedFramework.x64.6.0" Version="6.0.0-preview.5.21226.5"> | ||
<Uri>https://github.com/dotnet/runtime</Uri> | ||
<Sha>d67cc2cceb4dc8ecd15f5b6663d93f79de3954fd</Sha> | ||
<Sha>ac82799250fe42c8ba2941aef487aca94ecf04cc</Sha> | ||
</Dependency> | ||
</ProductDependencies> | ||
<ToolsetDependencies> | ||
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="6.0.0-beta.21222.1"> | ||
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="6.0.0-beta.21226.16"> | ||
<Uri>https://github.com/dotnet/arcade</Uri> | ||
<Sha>b7279bb45342c948ab46fea2d08ec17ae2f2a1bf</Sha> | ||
<Sha>bfd2d598fb91f8e21fa1dbe9ced70df203fe7eda</Sha> | ||
</Dependency> | ||
</ToolsetDependencies> | ||
</Dependencies> |
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
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
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
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,18 +1,18 @@ | ||
{ | ||
"sdk": { | ||
"version": "6.0.100-preview.2.21155.3", | ||
"version": "6.0.100-preview.3.21202.5", | ||
"allowPrerelease": true, | ||
"rollForward": "major" | ||
}, | ||
"tools": { | ||
"dotnet": "6.0.100-preview.2.21155.3", | ||
"dotnet": "6.0.100-preview.3.21202.5", | ||
"runtimes": { | ||
"dotnet": [ | ||
"$(MicrosoftNETCoreAppVersion)" | ||
] | ||
} | ||
}, | ||
"msbuild-sdks": { | ||
"Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21222.1" | ||
"Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21226.16" | ||
} | ||
} |