From 6328410e1a3f14327e7686bcb1d8826880f18254 Mon Sep 17 00:00:00 2001 From: UltimateCoder Date: Tue, 26 Nov 2024 22:21:07 +0100 Subject: [PATCH] Delete azure-pipelines.yml --- azure-pipelines.yml | 58 --------------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index e763091..0000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,58 +0,0 @@ - -trigger: -- master - -pool: - vmImage: 'ubuntu-latest' - -variables: - solution: '**/*.sln' - buildPlatform: 'Any CPU' - buildConfiguration: 'Release' - -steps: - -- task: UseDotNet@2 - displayName: 'Install .net core 3.1' - inputs: - packageType: 'sdk' - version: '3.1.101' - -- task: NuGetToolInstaller@1 - -- task: NuGetCommand@2 - displayName: 'Restore Library Dependencies' - inputs: - restoreSolution: '$(solution)' - -- task: DotNetCoreCLI@2 - displayName: 'Build Library' - inputs: - command: 'build' - projects: './src/AspNetCore.Identity.MongoDbCore.csproj' - arguments: '--configuration $(buildConfiguration)' - -# - task: DotNetCoreCLI@2 -# displayName: 'Test Library' -# inputs: -# command: 'test' -# projects: './test/AspNetCore.Identity.MongoDbCore.IntegrationTests/AspNetCore.Identity.MongoDbCore.IntegrationTests.csproj' -# arguments: '--configuration $(buildConfiguration)' - -- task: DotNetCoreCLI@2 - displayName: 'Package Library (nuget)' - inputs: - command: 'custom' - projects: './src/AspNetCore.Identity.MongoDbCore.csproj' - custom: 'pack' - arguments: '--no-build -p:NuspecFile=AspNetCore.Identity.MongoDbCore.nuspec -o $(build.artifactStagingDirectory)/Nuget' - verbosityPack: 'Detailed' - -- task: NuGetCommand@2 - displayName: 'Publish Library' - inputs: - command: 'push' - packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg' - nuGetFeedType: 'internal' - publishVstsFeed: '72ef5435-c019-4338-8d35-7c3caec78f2a' - verbosityPush: 'Normal' \ No newline at end of file