From 8b5c7c807f089f361e4a0f3402f9964a1bb52740 Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Sat, 5 Sep 2020 17:44:19 -0700 Subject: [PATCH] Fixes file encoding --- azure-pipelines.yml | 126 ++++++++++++++++++++++---------------------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b05340275..44ef43434 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,63 +1,63 @@ -name: 'Build' - -trigger: -- master - -variables: - buildConfiguration: 'Release' - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - -jobs: -- job: BuildWindows - displayName: 'Windows Server 2019' - pool: - vmImage: 'windows-latest' - - steps: - - task: UseDotNet@2 - displayName: 'Install .NET Core' - inputs: - packageType: sdk - version: '3.1.401' - - task: NuGetAuthenticate@0 - - script: dotnet restore --force-evaluate --source https://api.nuget.org/v3/index.json - displayName: 'Restore NuGet Packages' - - script: dotnet build -c $(buildConfiguration) -f netcoreapp3.1 --no-restore Projects/Server/Server.csproj - displayName: 'Build Server' - - script: dotnet build -c $(buildConfiguration) -f netcoreapp3.1 --no-restore Projects/UOContent/UOContent.csproj - displayName: 'Build UO Content' - - script: dotnet test --no-restore -f netcoreapp3.1 - displayName: 'Test' - -- job: BuildLinux - strategy: - matrix: - 'Debian 10': - containerImage: mcr.microsoft.com/dotnet/core/sdk:3.1-buster - 'Ubuntu 18': - containerImage: mcr.microsoft.com/dotnet/core/sdk:3.1-bionic - 'Ubuntu 20': - containerImage: mcr.microsoft.com/dotnet/core/sdk:3.1-focal - - displayName: Linux - - pool: - vmImage: 'ubuntu-latest' - - container: $[ variables['containerImage'] ] - - steps: - - task: UseDotNet@2 - displayName: 'Install .NET Core' - inputs: - packageType: sdk - version: '3.1.401' - - task: NuGetAuthenticate@0 - - script: dotnet restore --force-evaluate --source https://api.nuget.org/v3/index.json - displayName: 'Restore NuGet Packages' - - script: dotnet build -c $(buildConfiguration) -f netcoreapp3.1 --no-restore Projects/Server/Server.csproj - displayName: 'Build Server' - - script: dotnet build -c $(buildConfiguration) -f netcoreapp3.1 --no-restore Projects/UOContent/UOContent.csproj - displayName: 'Build UO Content' - - script: dotnet test --no-restore -f netcoreapp3.1 - displayName: 'Test' +name: 'Build' + +trigger: +- master + +variables: + buildConfiguration: 'Release' + DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true + +jobs: +- job: BuildWindows + displayName: 'Windows Server 2019' + pool: + vmImage: 'windows-latest' + + steps: + - task: UseDotNet@2 + displayName: 'Install .NET Core' + inputs: + packageType: sdk + version: '3.1.401' + - task: NuGetAuthenticate@0 + - script: dotnet restore --force-evaluate --source https://api.nuget.org/v3/index.json + displayName: 'Restore NuGet Packages' + - script: dotnet build -c $(buildConfiguration) -f netcoreapp3.1 --no-restore Projects/Server/Server.csproj + displayName: 'Build Server' + - script: dotnet build -c $(buildConfiguration) -f netcoreapp3.1 --no-restore Projects/UOContent/UOContent.csproj + displayName: 'Build UO Content' + - script: dotnet test --no-restore -f netcoreapp3.1 + displayName: 'Test' + +- job: BuildLinux + strategy: + matrix: + 'Debian 10': + containerImage: mcr.microsoft.com/dotnet/core/sdk:3.1-buster + 'Ubuntu 18': + containerImage: mcr.microsoft.com/dotnet/core/sdk:3.1-bionic + 'Ubuntu 20': + containerImage: mcr.microsoft.com/dotnet/core/sdk:3.1-focal + + displayName: Linux + + pool: + vmImage: 'ubuntu-latest' + + container: $[ variables['containerImage'] ] + + steps: + - task: UseDotNet@2 + displayName: 'Install .NET Core' + inputs: + packageType: sdk + version: '3.1.401' + - task: NuGetAuthenticate@0 + - script: dotnet restore --force-evaluate --source https://api.nuget.org/v3/index.json + displayName: 'Restore NuGet Packages' + - script: dotnet build -c $(buildConfiguration) -f netcoreapp3.1 --no-restore Projects/Server/Server.csproj + displayName: 'Build Server' + - script: dotnet build -c $(buildConfiguration) -f netcoreapp3.1 --no-restore Projects/UOContent/UOContent.csproj + displayName: 'Build UO Content' + - script: dotnet test --no-restore -f netcoreapp3.1 + displayName: 'Test'