Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>2021-09-21 05:28:35 +0300
committerGitHub <noreply@github.com>2021-09-21 05:28:35 +0300
commit70c05f178a33e018ed6c29295f0df190ad44b7e5 (patch)
tree64f5a70894ba83a00aac7466d2d0840eee7f6b5e /.devcontainer
parent57501251222b199597b9ac16888f362a69eb13c1 (diff)
[main] Update dependencies from dotnet/runtime dotnet/efcore (#36328)
[main] Update dependencies from dotnet/runtime dotnet/efcore - Update TFM to net7.0 - Fixup - Update src/Shared/CodeAnalysis/DynamicallyAccessedMembersAttribute.cs Co-authored-by: Chris Ross <chrross@microsoft.com> - Update src/Shared/CodeAnalysis/DynamicallyAccessedMemberTypes.cs Co-authored-by: Chris Ross <chrross@microsoft.com> - Update netfx to 462 - Update more to net462 - Fix workaround - Update ifdefs - Add workaround for KnownRuntimePack - Merge branch 'darc-main-c944b2c3-1c63-49a3-b9dd-98cda1a942e3' of https://github.com/dotnet/aspnetcore into darc-main-c944b2c3-1c63-49a3-b9dd-98cda1a942e3 - Merge branch 'main' into darc-main-c944b2c3-1c63-49a3-b9dd-98cda1a942e3 - Add SiteExtensions versions - Fix RepoTasks assembly dir - Update CreateFrameworkListFile to account for new analyzer path format introduced with https://github.com/dotnet/sdk/issues/20355 - Don't target latest runtime in razor tests - Update Dependencies.props - Update Helix.targets - Fixup - Move FrameworkReference update to GenerateFiles - Have Helix tests import directory.build files - Keep RunTests at net6 - Quarantine 2 tests - revert spa-templates submodule downgrade
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/devcontainer.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index eefdb6bfe9..3b3c6b4f92 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -5,8 +5,8 @@
"build": {
"dockerfile": "Dockerfile",
"args": {
- // Update 'VARIANT' to pick a .NET Core version: 2.1, 3.1, 5.0
- "VARIANT": "5.0",
+ // Update 'VARIANT' to pick a .NET Core version: 2.1, 3.1, 5.0, 6.0, 7.0
+ "VARIANT": "7.0",
// Options
"INSTALL_NODE": "true",
"NODE_VERSION": "lts/*"
@@ -31,7 +31,7 @@
"remoteEnv": {
"PATH": "${containerWorkspaceFolder}/.dotnet:${containerEnv:PATH}",
"DOTNET_MULTILEVEL_LOOKUP": "0",
- "TARGET": "net6.0"
+ "TARGET": "net7.0"
},
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.