Skip to content

Commit 2ef7aac

Browse files
committed
Updates Files
- Changed Appveyor.yml to reflect new naming structure - Adds new 2.0 dotnet core to appveyor - Changed Dockerfile to reflect the new naming scheme
1 parent 5dbef67 commit 2ef7aac

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
WORKDIR /app
33

44
# copy csproj and restore as distinct layers
5-
COPY RadarrAPI/*.csproj ./
5+
COPY LidarrAPI/*.csproj ./
66
RUN dotnet restore
77

88
# copy everything else and build
9-
COPY RadarrAPI/* ./
9+
COPY LidarrAPI/* ./
1010
RUN dotnet publish -c Release -o out
1111

1212
# build runtime image
1313
FROM microsoft/dotnet:2.0-runtime
1414
WORKDIR /app
1515
COPY --from=build-env /app/out ./
16-
ENTRYPOINT ["dotnet", "RadarrAPI.dll"]
16+
ENTRYPOINT ["dotnet", "LidarrAPI.dll"]

appveyor.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ assembly_info:
99
configuration: Release
1010

1111
platform: Any CPU
12-
12+
1313
environment:
1414
DOTNET_CLI_TELEMETRY_OPTOUT: 1
15-
15+
1616
# Install .NET Core SDK 1.0 rc4 build 004771
1717
init:
1818
- ps: (new-object net.webclient).DownloadFile('https://go.microsoft.com/fwlink/?linkid=841686', "c:/dotnet-install.exe")
1919
- ps: Start-Process c:\dotnet-install.exe -ArgumentList "/install","/quiet" -Wait
20-
20+
2121
build_script:
2222
- ps: dotnet restore --no-cache
23-
- ps: dotnet build .\RadarrAPI\RadarrAPI.csproj -c Release
23+
- ps: dotnet build .\LidarrAPI\LidarrAPI.csproj -c Release
2424

2525
artifacts:
26-
- path: '.\RadarrAPI\bin\Any CPU\Release\netcoreapp1.1\RadarrAPI.dll'
26+
- path: '.\LidarrAPI\bin\Any CPU\Release\netcoreapp2.0\LidarrAPI.dll'

0 commit comments

Comments
 (0)