4,593 questions
238
votes
18
answers
175k
views
Publish error: Found multiple publish output files with the same relative path
When I publish my ABP project I get the following error:
C:\Program Files\dotnet\sdk\6.0.100-rc.1.21458.32\Sdks\Microsoft.NET.Sdk
\targets\Microsoft.NET.ConflictResolution.targets(112,5):
error ...
121
votes
35
answers
358k
views
HTTP Error 500.30 - ASP.NET Core app failed to start [closed]
I deploy a .NET Core app with settings:
And the website shows an error:
HTTP Error 500.30 - ASP.NET Core app failed to start
Common solutions
to this issue:
The app failed to start
The app started ...
780
votes
8
answers
338k
views
What is the difference between "expose" and "publish" in Docker?
I'm experimenting with Dockerfiles, and I think I understand most of the logic. However, I don't see the difference between "exposing" and "publishing" a port in this context.
All the tutorials I ...
0
votes
0
answers
38
views
Dealing with utility projects in self-contained .NET
x-y problem
I need to deploy a ASP.NET application, and due to Microsoft not having a method to have an unattended .NET runtime install to use in my provision scripts (yes I know they have this for CI/...
187
votes
33
answers
417k
views
Why am I getting a "401 Unauthorized" error in Maven?
Why am I getting a "401 Unauthorized" error in Maven?
Here's the error I'm getting when calling mvn deploy (full logs at the bottom):
[INFO] BUILD FAILURE
[ERROR] Failed to execute goal ...
0
votes
0
answers
42
views
Android Maven: publish multiple build types (multipleVariants does not work out)
I want to publish a project which contains a collection of libraries. Each library should contain a debug and release build type. Libraries should possibly referenced by other libraries of this ...
1
vote
1
answer
101
views
ClickOnce WPF Application Automatic Update
We have a tiny WPF-software that mostly operates in the taskbar with .NET 9.0. Just open and forget kind, with very little user input. ClickOnce was chosen as our distribution platform.
Updates can be ...
0
votes
1
answer
132
views
I cannot publish my completed .Net Maui application
I completed my .net maui application and got it working 100%. Now I want to publish it into a windows setup.exe file. However, when I right-click on the solution name in the solution explorer, the ...
0
votes
0
answers
146
views
AOT instance failed, .NET 8 MAUI app IOS release build
I got an AOT instance dll error while building/publishing my .NET 8 MAUI ios app in release mode. No problem with the debug mode.
/usr/local/share/dotnet/packs/Microsoft.iOS.Sdk.net8.0_18.0/18.0.8324/...
101
votes
13
answers
149k
views
HTTP Error 500.19 when publish .net core project into iis with 0x80070005
I want to publish a sample .net core web application on my pc's IIS manager but I failed. I am using Microsoft guidance but it doesn't work for me, if you have reasonable experience to fix this ...
1
vote
0
answers
113
views
Building a single java project for different jdk versions
Is there a proper or easy way of building one project for different JDK versions, the project would use different versions of its dependency depending on what JDK version it's built with.
I have a ...
331
votes
12
answers
81k
views
"To Do" list before publishing Android app to market [closed]
I'm just about ready to publish my first app to the Android market, and I'd like to know if any of you have any tips about any experiences you may have encountered in regard to publishing an app that ...
4
votes
2
answers
16k
views
Exposing 11434 port in Docker container to access Ollama local model
I am trying to connect local Ollama 2 model, that uses port 11434 on my local machine, with my Docker container running Linux Ubuntu 22.04. I can confirm that Ollama model definitely works and is ...
0
votes
0
answers
43
views
Build error during publishing in MS Visual Studio Professional 2019
I'm getting build error as mentioned below while publishing web project to root directory. Anybody facing same issue?
Publish has encountered an error.
Build failed. Check the Output window for more ...
0
votes
0
answers
71
views
Metadata file '... .dll' could not be found
I have a console application which has project reference of a web application.
This is how the project reference is added in the csproj file of the console application
<ItemGroup>
<...
5
votes
3
answers
9k
views
Why does it say that my app is superseded?
I am trying to publish an app to google play store. I have uploaded versions to Internal testing which works fine, but when I upload to Production, it says "release not live". When I go to &...
1
vote
1
answer
346
views
How do I properly publish a Packaged Blank WinUI 3 application?
I just created a Blank App, Packaged (WinUI 3 in Desktop) project in Visual Studio 2022 with absolutely no added code or external packages that weren't pre-installed and tried to publish it from the ...
17
votes
3
answers
15k
views
Rebuilding expo bundle with a different slug
I changed the name of a React Native/Expo app and wanted to change the slug to go with it, but got the error "CombinedError: [GraphQL] Experience with name '@-----/newName' does not exist". ...
3
votes
2
answers
534
views
Publish SUI package(smart contract) using typescript SDK
I'm trying to build and publish new SUI package (smart contract) using @mysten/sui typescript SDK. When executing transaction simulation it fails with PublishErrorNonZeroAddress in command 0 error ...
98
votes
11
answers
44k
views
Publishing from Visual Studio 2015 - allow untrusted certificates
I am publishing my ASP.NET 5 MVC6 project from Visual Studio 2015. I have imported publish profile from my server. Connection validates successfully, however when I publish my project I have the ...
0
votes
0
answers
67
views
Published .NET application crashes when using \\?\ file name notation
The following code works on debug builds, it works on release builds and it works when manually executing a published executable in the published dir (eg "..\Application Files\WindowsApp1_1_0_1_0\...
6
votes
1
answer
2k
views
dotnet publish error WASM0005: Unable to resolve WebAssembly runtime pack version
I use dotnet publish to deploy a blazor webassembly hosted app to IIS:
location of server project> dotnet publish -c Release -r win-x64 --self-contained false --output {AppDir}
But I get this ...
66
votes
5
answers
25k
views
.NET Core build produces localization folders
I have a web ASP.NET solution that is using .NET Core 2.0. It's built using the following command:
dotnet publish MySolution.sln --configuration release --output d:\test_output
When I check the ...
94
votes
9
answers
170k
views
Rename app in google play store [closed]
I published my app in google play store and tried to find it. But I found it by project name. My project name wasn't like app name.
But many people installed my app. How can I change the name without ...
2
votes
0
answers
207
views
How do I generate and publish maven-metadata.xml at the G (group) level for a custom Maven plugin
I've created a custom maven plugin and I've published it to the central maven repository using the org.sonatype.central:central-publishing-maven-plugin plugin.
I run the mvn deploy command to execute ...