Skip to content

adv #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
2f7bbed
Set up CI with Azure Pipelines
Software-devs-bit Apr 21, 2020
aa89248
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit Apr 21, 2020
e2c1359
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit Apr 21, 2020
ff2acea
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit Apr 21, 2020
8224a83
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit Apr 21, 2020
bb8ee46
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit Apr 21, 2020
9f0de64
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit Apr 21, 2020
52e347c
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit Apr 22, 2020
22ae67b
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit Apr 22, 2020
ec374a1
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit May 8, 2020
87092ed
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit May 8, 2020
6080063
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit May 8, 2020
4b10606
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit May 8, 2020
9ad1a3e
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit May 8, 2020
b5e1e3c
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit May 8, 2020
38ffdcd
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit May 8, 2020
92bcbea
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit May 8, 2020
e66615c
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit May 9, 2020
9850725
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit May 9, 2020
418343a
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit May 9, 2020
881924c
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit May 9, 2020
300eafe
Update azure-pipelines.yml for Azure Pipelines
Software-devs-bit May 9, 2020
66ddb5c
Update net-sample.csproj
Software-devs-bit May 9, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# .NET Desktop
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net

trigger:
-

pool:
name: 'Default'
vmImage: 'windows-latest'
variables:
solution: '**/*.sln'
buildPlatform:
buildConfiguration:

steps:
- task: NuGetToolInstaller@1

- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'

- task: VSBuild@1
inputs:
solution: '$(solution)'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'

- task: VSTest@2
inputs:
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'

- task: CopyFiles@2
inputs:
Contents: '**\$(BuildConfiguration)\**\?(*.exe|*.dll|*.pdb)'
TargetFolder: '$(Build.ArtifactStagingDirectory)'

- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
ArtifactName: 'drop'

2 changes: 2 additions & 0 deletions net-sample/net-sample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@
</PropertyGroup>

</Project>
<xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
</Project>