Error Running .net core exe after publish command on WindowsIs there an equivalent of 'which' on the Windows command line?How do I run two commands in one line in Windows CMD?What is the difference between .NET Core and .NET Standard Class Library project types?Deploy .NET Core 2 Console App.net core 2.0 console app : exe file locationThe 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.NET Core 2.0 Is Not An Option in Visual Studio Target FrameworkPublished .Net-Core App won't runDotnet core 2.0 Build & Publishing couldn't be hosted in IISHow to Publish .Net Core in IIS
Overprovisioning SSD on ubuntu. How? Ubuntu 19.04 Samsung SSD 860
Why did the United States not resort to nuclear weapons in Vietnam?
Word for pulling a punch in karate
Will medical institutions reject an applicant based on being 28 years of age?
How to get maximum number that newcount can hold?
Were there any unmanned expeditions to the moon that returned to Earth prior to Apollo?
Move label of an angle in Tikz
Windows del command not working?
What is Albrecht Dürer's Perspective Machine drawing style?
Partial Fractions: Why does this shortcut method work?
How is Sword Coast North governed?
Can't understand an ACT practice problem: Triangle appears to be isosceles, why isn't the answer 7.3~ here?
Return last number in sub-sequences in a list of integers
Should I take up a Creative Writing online course?
Why are sugars in whole fruits not digested the same way sugars in juice are?
What's the term for a group of people who enjoy literary works?
Basic theorem proving in Mathematica?
Does KNN have a loss function?
HackerRank Implement Queue using two stacks Solution
Transistor design with beta variation
Feedback diagram
Traveling from New York city to Starkville Mississippi with public transport
A conjectural trigonometric identity
speaker impedence
Error Running .net core exe after publish command on Windows
Is there an equivalent of 'which' on the Windows command line?How do I run two commands in one line in Windows CMD?What is the difference between .NET Core and .NET Standard Class Library project types?Deploy .NET Core 2 Console App.net core 2.0 console app : exe file locationThe 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.NET Core 2.0 Is Not An Option in Visual Studio Target FrameworkPublished .Net-Core App won't runDotnet core 2.0 Build & Publishing couldn't be hosted in IISHow to Publish .Net Core in IIS
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm trying to publish a dotnet core application and run it on my other computer. I want to create a Self-contained deployment so that I do not need .NET core on my other computer. When I try to run the exe on my other computer, I get the following error:
Error:
An assembly specified in the application dependencies manifest (GithubIssues.deps.json) was not found:
package: 'runtime.win-x64.Microsoft.NETCore.App', version: '2.0.9'
path: 'runtimes/win-x64/lib/netcoreapp2.0/System.Transactions.Local.dll'
Here is my csproj file:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
<RootNamespace>GithubIssues</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
</ItemGroup>
</Project>
I ran the following command to publishdotnet publish -c Release -r win-x64
I then copied binReleasenetcoreapp2.0win-x64publish to my other computer and tried to run the exe and I got the error above. I've also tried updating the TargetFramework to be win10-x64, and then used -r win10-x64 when running the publish command but that did not work. I've confirmed that my other computer is win10-x64.
I've also copied this to another Windows machine that has .NET core, and my application ran successfully so I believe this is an issue with how I'm publishing.
Any thoughts?
c# .net windows .net-core
add a comment |
I'm trying to publish a dotnet core application and run it on my other computer. I want to create a Self-contained deployment so that I do not need .NET core on my other computer. When I try to run the exe on my other computer, I get the following error:
Error:
An assembly specified in the application dependencies manifest (GithubIssues.deps.json) was not found:
package: 'runtime.win-x64.Microsoft.NETCore.App', version: '2.0.9'
path: 'runtimes/win-x64/lib/netcoreapp2.0/System.Transactions.Local.dll'
Here is my csproj file:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
<RootNamespace>GithubIssues</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
</ItemGroup>
</Project>
I ran the following command to publishdotnet publish -c Release -r win-x64
I then copied binReleasenetcoreapp2.0win-x64publish to my other computer and tried to run the exe and I got the error above. I've also tried updating the TargetFramework to be win10-x64, and then used -r win10-x64 when running the publish command but that did not work. I've confirmed that my other computer is win10-x64.
I've also copied this to another Windows machine that has .NET core, and my application ran successfully so I believe this is an issue with how I'm publishing.
Any thoughts?
c# .net windows .net-core
add a comment |
I'm trying to publish a dotnet core application and run it on my other computer. I want to create a Self-contained deployment so that I do not need .NET core on my other computer. When I try to run the exe on my other computer, I get the following error:
Error:
An assembly specified in the application dependencies manifest (GithubIssues.deps.json) was not found:
package: 'runtime.win-x64.Microsoft.NETCore.App', version: '2.0.9'
path: 'runtimes/win-x64/lib/netcoreapp2.0/System.Transactions.Local.dll'
Here is my csproj file:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
<RootNamespace>GithubIssues</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
</ItemGroup>
</Project>
I ran the following command to publishdotnet publish -c Release -r win-x64
I then copied binReleasenetcoreapp2.0win-x64publish to my other computer and tried to run the exe and I got the error above. I've also tried updating the TargetFramework to be win10-x64, and then used -r win10-x64 when running the publish command but that did not work. I've confirmed that my other computer is win10-x64.
I've also copied this to another Windows machine that has .NET core, and my application ran successfully so I believe this is an issue with how I'm publishing.
Any thoughts?
c# .net windows .net-core
I'm trying to publish a dotnet core application and run it on my other computer. I want to create a Self-contained deployment so that I do not need .NET core on my other computer. When I try to run the exe on my other computer, I get the following error:
Error:
An assembly specified in the application dependencies manifest (GithubIssues.deps.json) was not found:
package: 'runtime.win-x64.Microsoft.NETCore.App', version: '2.0.9'
path: 'runtimes/win-x64/lib/netcoreapp2.0/System.Transactions.Local.dll'
Here is my csproj file:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
<RootNamespace>GithubIssues</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
</ItemGroup>
</Project>
I ran the following command to publishdotnet publish -c Release -r win-x64
I then copied binReleasenetcoreapp2.0win-x64publish to my other computer and tried to run the exe and I got the error above. I've also tried updating the TargetFramework to be win10-x64, and then used -r win10-x64 when running the publish command but that did not work. I've confirmed that my other computer is win10-x64.
I've also copied this to another Windows machine that has .NET core, and my application ran successfully so I believe this is an issue with how I'm publishing.
Any thoughts?
c# .net windows .net-core
c# .net windows .net-core
asked Mar 27 at 0:26
nedstark179nedstark179
1895 gold badges7 silver badges17 bronze badges
1895 gold badges7 silver badges17 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
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%2f55368081%2ferror-running-net-core-exe-after-publish-command-on-windows%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using 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%2f55368081%2ferror-running-net-core-exe-after-publish-command-on-windows%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