Compare commits

..

No commits in common. "60d6a1fdcdbc1e2bed05fdf57e0ea1a6ba389805" and "9d0b2d49202ca194dacb14b102166a0dd0bd4055" have entirely different histories.

5 changed files with 2 additions and 49 deletions

View File

@ -1,24 +0,0 @@
kind: pipeline
type: docker
name: AOC2021
steps:
- name: init
image: busybox
commands:
- echo 'Starting build pipeline for AOC2021'
- name: build-aoc-2021
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: 97waterpolo/aoc-2021
dockerfile: AOC2021/Dockerfile
- name: finish
image: busybox
commands:
- echo 'Finished deployment for Aincrad'

View File

@ -4,6 +4,7 @@ namespace AOC2021.Test.Models
{ {
public class Answer public class Answer
{ {
public string Day_A_Test { get; set; } public string Day_A_Test { get; set; }
public string Day_A_Input { get; set; } public string Day_A_Input { get; set; }
public string Day_B_Test { get; set; } public string Day_B_Test { get; set; }

View File

@ -5,12 +5,7 @@ VisualStudioVersion = 16.0.31515.178
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AOC2021", "AOC2021\AOC2021.csproj", "{1C97C7BD-E112-4CC4-B870-BCEE6146C707}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AOC2021", "AOC2021\AOC2021.csproj", "{1C97C7BD-E112-4CC4-B870-BCEE6146C707}"
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AOC2021.Test", "AOC2021.Test\AOC2021.Test.csproj", "{00B6E578-8E4E-4722-A601-A8CEE90704E1}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AOC2021.Test", "AOC2021.Test\AOC2021.Test.csproj", "{00B6E578-8E4E-4722-A601-A8CEE90704E1}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{124C7B74-D961-41F1-AF3D-6601591EB410}"
ProjectSection(SolutionItems) = preProject
.drone.yml = .drone.yml
EndProjectSection
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -5,6 +5,5 @@
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<ActiveDebugProfile>AOC2021</ActiveDebugProfile> <ActiveDebugProfile>AOC2021</ActiveDebugProfile>
<ShowAllFiles>false</ShowAllFiles>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

View File

@ -1,18 +0,0 @@
FROM mcr.microsoft.com/dotnet/runtime:5.0 AS base
WORKDIR /app
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
WORKDIR /src
COPY ["AOC2021.csproj", "AOC2021/"]
RUN dotnet restore "AOC2021/AOC2021.csproj"
COPY [".", "AOC2021/."]
WORKDIR "/src/AOC2021"
RUN dotnet build "AOC2021.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "AOC2021.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "AOC2021.dll"]