diff --git a/README.md b/README.md index 87ccce6..9563232 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,24 @@ -# [:] Example Dotnet Project +[:] Example Dotnet Project + +###Testing +#Test678 +#Profiletesting +#Test59 +#test99 +#TESTSCA +#TestDEC +#debug testing +#March18th + An example dotnet project to demonstrate [srcclr](https://www.srcclr.com) scans. -## Try me! +# Try me! For running scan install .NetFramework and msbuild -### Windows +###Windows + ``` choco install srcclr @@ -16,7 +28,7 @@ msbuild example-dotnet/ srcclr scan example-dotnet/ ``` -### OSX +## OSX ``` brew tap srcclr/srcclr brew install srcclr @@ -25,3 +37,8 @@ git clone https://github.com/srcclr/example-dotnet msbuild example-dotnet/ srcclr scan example-dotnet/ ``` +Test 1 +TEST 2 +TEST + + diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..6d41783 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,34 @@ +# ASP.NET +# Build and test ASP.NET projects. +# Add steps that publish symbols, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4 + +trigger: +- master + +pool: + vmImage: 'windows-latest' + +variables: + solution: '**/*.sln' + buildPlatform: 'Any CPU' + buildConfiguration: 'Release' + +steps: +- task: NuGetToolInstaller@1 + +- task: NuGetCommand@2 + inputs: + restoreSolution: '$(solution)' + +- task: VSBuild@1 + inputs: + solution: '$(solution)' + msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="$(build.artifactStagingDirectory)"' + platform: '$(buildPlatform)' + configuration: '$(buildConfiguration)' + +- task: VSTest@2 + inputs: + platform: '$(buildPlatform)' + configuration: '$(buildConfiguration)'