Question

ASP.Net GitHub deployment

Hello,

I want to deploy an ASP.Net API with ‘Create Resource From Source Code,’ but after I connect to GitHub, I get an error in the top right corner of the page: ‘no component detected.’

In the repository is name/repository, Branch: master, Source Directory (Optional) / and Auto Deploy is activated.

Please, can you help me?


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Bobby Iliev
Site Moderator
Site Moderator badge
July 14, 2024

Hi there,

ASP.Net is not supported as a native buildpack as listed here:

https://docs.digitalocean.com/products/app-platform/reference/buildpacks/

However what you could do here is to use a Dockerfile instead to deploy your app:

https://docs.digitalocean.com/products/app-platform/reference/dockerfile/

Here is an example Dockerfile that you could use for your ASP.Net app:

# Use the official Microsoft .NET SDK image as a base image
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build-env
WORKDIR /app

# Copy csproj and restore as distinct layers
COPY *.csproj ./
RUN dotnet restore

# Copy everything else and build
COPY . ./
RUN dotnet publish -c Release -o out

# Build runtime image
FROM mcr.microsoft.com/dotnet/aspnet:7.0
WORKDIR /app
COPY --from=build-env /app/out .
ENTRYPOINT ["dotnet", "YourAppName.dll"]

Make sure to adjust this accordingly based on your app needs.

Let me know if you have any questions.

- Bobby

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Featured on Community

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more