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

Become a contributor for community

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

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.