diff --git a/.vs/ProjectSettings.json b/.vs/ProjectSettings.json new file mode 100644 index 00000000..f8b48885 --- /dev/null +++ b/.vs/ProjectSettings.json @@ -0,0 +1,3 @@ +{ + "CurrentProjectSetting": null +} \ No newline at end of file diff --git a/.vs/SampleWebApp/FileContentIndex/faabb79e-8561-4cbd-9fb4-de0d4badda0d.vsidx b/.vs/SampleWebApp/FileContentIndex/faabb79e-8561-4cbd-9fb4-de0d4badda0d.vsidx new file mode 100644 index 00000000..91b317fe Binary files /dev/null and b/.vs/SampleWebApp/FileContentIndex/faabb79e-8561-4cbd-9fb4-de0d4badda0d.vsidx differ diff --git a/.vs/SampleWebApp/FileContentIndex/read.lock b/.vs/SampleWebApp/FileContentIndex/read.lock new file mode 100644 index 00000000..e69de29b diff --git a/.vs/SampleWebApp/v17/.wsuo b/.vs/SampleWebApp/v17/.wsuo new file mode 100644 index 00000000..aa984477 Binary files /dev/null and b/.vs/SampleWebApp/v17/.wsuo differ diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json new file mode 100644 index 00000000..5c1f26a7 --- /dev/null +++ b/.vs/VSWorkspaceState.json @@ -0,0 +1,7 @@ +{ + "ExpandedNodes": [ + "" + ], + "SelectedNode": "\\C:\\Users\\Admin\\Source\\Repos\\SampleWebApp", + "PreviewInSolutionExplorer": false +} \ No newline at end of file diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 00000000..22de787e Binary files /dev/null and b/.vs/slnx.sqlite differ diff --git a/NewFile b/NewFile new file mode 100644 index 00000000..e69de29b diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000..7fffcc9c --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,21 @@ +# Ant +# Build your Java projects and run tests with Apache Ant. +# Add steps that save build artifacts and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/java + +trigger: +- master + +pool: + vmImage: ubuntu-latest + +steps: +- task: Ant@1 + inputs: + workingDirectory: '' + buildFile: 'build.xml' + javaHomeOption: 'JDKVersion' + jdkVersionOption: '1.8' + jdkArchitectureOption: 'x64' + publishJUnitResults: true + testResultsFiles: '**/TEST-*.xml'