Can microsoft .net core 2.2 sdk docker container be used for building 2.1 and 2.2 targeted projectsHow can I inspect the file system of a failed `docker build`?What is the difference between .NET Core and .NET Standard Class Library project types?Build Docker image for .net core project through commandThe current .NET SDK does not support targeting .NET Core 2.1. target .NET Core 2.0 or lower or use a vs of the .NET SDK that support NET Core 2.1“It was not possible to find any compatible framework version” with ASP.NET Core 2.1 in DockerInstalling Dot Net Core 2.1 on build serverDocker image for dotnet core 2.1 and IIS.NET Core image that supports both .net core 2.1+ and (node or PowerShell?) in DockerCreate .NET Core WebApi with older SDK versionDocker Alpine dotnet Core 2.2 Console App every response content-length 0
How can I reset Safari when Safari is broken?
Possibility to correct pitch from digital versions of records with the hole not centered
When do flights get cancelled due to fog?
How did the IEC decide to create kibibytes?
What purpose does mercury dichloride have in fireworks?
What is the shape of the upper boundary of water hitting a screen?
Shipped package arrived - didn't order, possible scam?
Can one block with a protection from color creature?
What does the multimeter dial do internally?
Interpretation of non-significant results as "trends"
Where are the Wazirs?
Have Arahants have eliminated all Sankhara?
As a supervisor, what feedback would you expect from a PhD who quits?
Who goes first? Person disembarking bus or the bicycle?
Is this car delivery via Ebay Motors on Craigslist a scam?
My professor has told me he will be the corresponding author. Will it hurt my future career?
Is it ok for parents to kiss and romance with each other while their 2- to 8-year-old child watches?
Four ships at the ocean with the same distance
How to reclaim personal item I've lent to the office without burning bridges?
Need a non-volatile memory IC with near unlimited read/write operations capability
Define functions in a tikzcd diagram
What happens if a short can't be covered?
What are the consequences for a developed nation to not accept any refugees?
Will Jimmy fall off his platform?
Can microsoft .net core 2.2 sdk docker container be used for building 2.1 and 2.2 targeted projects
How can I inspect the file system of a failed `docker build`?What is the difference between .NET Core and .NET Standard Class Library project types?Build Docker image for .net core project through commandThe current .NET SDK does not support targeting .NET Core 2.1. target .NET Core 2.0 or lower or use a vs of the .NET SDK that support NET Core 2.1“It was not possible to find any compatible framework version” with ASP.NET Core 2.1 in DockerInstalling Dot Net Core 2.1 on build serverDocker image for dotnet core 2.1 and IIS.NET Core image that supports both .net core 2.1+ and (node or PowerShell?) in DockerCreate .NET Core WebApi with older SDK versionDocker Alpine dotnet Core 2.2 Console App every response content-length 0
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have several .net core 2.1 and 2.2 projects that will be built using on-premises servers that run Docker containers for the build workspaces. I am planning to use the mcr.microsoft.com/dotnet/core/sdk:2.1 image to build the 2.1 projects, and the mcr.microsoft.com/dotnet/core/sdk:2.2 image to build the 2.2 projects, but I'd like to simplify things if I can. Is it advisable to use just the mcr.microsoft.com/dotnet/core/sdk:2.2 image to build both 2.1 and 2.2 projects, and get rid of the 2.1 sdk image?
docker .net-core
add a comment |
I have several .net core 2.1 and 2.2 projects that will be built using on-premises servers that run Docker containers for the build workspaces. I am planning to use the mcr.microsoft.com/dotnet/core/sdk:2.1 image to build the 2.1 projects, and the mcr.microsoft.com/dotnet/core/sdk:2.2 image to build the 2.2 projects, but I'd like to simplify things if I can. Is it advisable to use just the mcr.microsoft.com/dotnet/core/sdk:2.2 image to build both 2.1 and 2.2 projects, and get rid of the 2.1 sdk image?
docker .net-core
add a comment |
I have several .net core 2.1 and 2.2 projects that will be built using on-premises servers that run Docker containers for the build workspaces. I am planning to use the mcr.microsoft.com/dotnet/core/sdk:2.1 image to build the 2.1 projects, and the mcr.microsoft.com/dotnet/core/sdk:2.2 image to build the 2.2 projects, but I'd like to simplify things if I can. Is it advisable to use just the mcr.microsoft.com/dotnet/core/sdk:2.2 image to build both 2.1 and 2.2 projects, and get rid of the 2.1 sdk image?
docker .net-core
I have several .net core 2.1 and 2.2 projects that will be built using on-premises servers that run Docker containers for the build workspaces. I am planning to use the mcr.microsoft.com/dotnet/core/sdk:2.1 image to build the 2.1 projects, and the mcr.microsoft.com/dotnet/core/sdk:2.2 image to build the 2.2 projects, but I'd like to simplify things if I can. Is it advisable to use just the mcr.microsoft.com/dotnet/core/sdk:2.2 image to build both 2.1 and 2.2 projects, and get rid of the 2.1 sdk image?
docker .net-core
docker .net-core
asked Mar 25 at 21:38
dabullsdabulls
691 silver badge10 bronze badges
691 silver badge10 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Found the following from Microsoft on their Prerequisites for .NET Core on Windows page. This page specifically relates to Visual Studio, but note the verbiage regarding the 2.2 SDK:
Once you have Visual Studio configured with .NET Core 2.2 SDK, you can
do the following actions:
- Open, build, and run existing .NET Core 1.x and 2.x projects.
- Retarget .NET Core 1.x and 2.x projects to .NET Core 2.2, build, and run.
- Create new .NET Core 2.2 projects.
According to the above quoted section of the docs, you should be able to safely build your 2.x projects in the 2.2 SDK container and shouldn't need the 2.1 SDK container for 2.1 project builds.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55346796%2fcan-microsoft-net-core-2-2-sdk-docker-container-be-used-for-building-2-1-and-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Found the following from Microsoft on their Prerequisites for .NET Core on Windows page. This page specifically relates to Visual Studio, but note the verbiage regarding the 2.2 SDK:
Once you have Visual Studio configured with .NET Core 2.2 SDK, you can
do the following actions:
- Open, build, and run existing .NET Core 1.x and 2.x projects.
- Retarget .NET Core 1.x and 2.x projects to .NET Core 2.2, build, and run.
- Create new .NET Core 2.2 projects.
According to the above quoted section of the docs, you should be able to safely build your 2.x projects in the 2.2 SDK container and shouldn't need the 2.1 SDK container for 2.1 project builds.
add a comment |
Found the following from Microsoft on their Prerequisites for .NET Core on Windows page. This page specifically relates to Visual Studio, but note the verbiage regarding the 2.2 SDK:
Once you have Visual Studio configured with .NET Core 2.2 SDK, you can
do the following actions:
- Open, build, and run existing .NET Core 1.x and 2.x projects.
- Retarget .NET Core 1.x and 2.x projects to .NET Core 2.2, build, and run.
- Create new .NET Core 2.2 projects.
According to the above quoted section of the docs, you should be able to safely build your 2.x projects in the 2.2 SDK container and shouldn't need the 2.1 SDK container for 2.1 project builds.
add a comment |
Found the following from Microsoft on their Prerequisites for .NET Core on Windows page. This page specifically relates to Visual Studio, but note the verbiage regarding the 2.2 SDK:
Once you have Visual Studio configured with .NET Core 2.2 SDK, you can
do the following actions:
- Open, build, and run existing .NET Core 1.x and 2.x projects.
- Retarget .NET Core 1.x and 2.x projects to .NET Core 2.2, build, and run.
- Create new .NET Core 2.2 projects.
According to the above quoted section of the docs, you should be able to safely build your 2.x projects in the 2.2 SDK container and shouldn't need the 2.1 SDK container for 2.1 project builds.
Found the following from Microsoft on their Prerequisites for .NET Core on Windows page. This page specifically relates to Visual Studio, but note the verbiage regarding the 2.2 SDK:
Once you have Visual Studio configured with .NET Core 2.2 SDK, you can
do the following actions:
- Open, build, and run existing .NET Core 1.x and 2.x projects.
- Retarget .NET Core 1.x and 2.x projects to .NET Core 2.2, build, and run.
- Create new .NET Core 2.2 projects.
According to the above quoted section of the docs, you should be able to safely build your 2.x projects in the 2.2 SDK container and shouldn't need the 2.1 SDK container for 2.1 project builds.
answered Mar 28 at 2:37
MichaelMichael
1,1541 gold badge7 silver badges16 bronze badges
1,1541 gold badge7 silver badges16 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55346796%2fcan-microsoft-net-core-2-2-sdk-docker-container-be-used-for-building-2-1-and-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown