diff --git a/azure-pipelines.yml b/azure-pipelines.yml
new file mode 100644
index 0000000..f5f99ab
--- /dev/null
+++ b/azure-pipelines.yml
@@ -0,0 +1,39 @@
+trigger:
+- master
+
+pool:
+ vmImage: 'vs2017-win2016'
+
+variables:
+ buildConfiguration: 'Release'
+
+steps:
+- script: |
+ dotnet build --configuration $(buildConfiguration)
+ dotnet pack --include-symbols
+ displayName: 'dotnet build $(buildConfiguration)'
+
+- task: VSTest@2
+ displayName: 'dotnet test'
+ inputs:
+ testSelector: testAssemblies
+ testAssemblyVer2: |
+ **\*Test*.dll
+ !**\*Microsoft.VisualStudio.TestPlatform*
+ !**\obj\**
+ codeCoverageEnabled: true
+ otherConsoleOptions: '/platform:x64 /Framework:.NETCoreApp,Version=v2.2 /logger:console;verbosity="normal" '
+
+- task: CopyFiles@2
+ displayName: 'copy nuget packages'
+ inputs:
+ SourceFolder: '$(Build.SourcesDirectory)'
+ Contents: |
+ **/*.nupkg
+ TargetFolder: '$(Build.ArtifactStagingDirectory)'
+
+- task: PublishBuildArtifacts@1
+ displayName: 'publish artifacts'
+ inputs:
+ pathtoPublish: '$(Build.ArtifactStagingDirectory)'
+ artifactName: 'nupkg'
diff --git a/src/Kavod.Vba.Compression/Kavod.Vba.Compression.csproj b/src/Kavod.Vba.Compression/Kavod.Vba.Compression.csproj
index d9795a8..98683a4 100644
--- a/src/Kavod.Vba.Compression/Kavod.Vba.Compression.csproj
+++ b/src/Kavod.Vba.Compression/Kavod.Vba.Compression.csproj
@@ -2,18 +2,19 @@
net45;netstandard2.0
- Copyright © 2016
- true
+ Copyright © 2016
True
Ross Knudsen
- VBA uses a compression algorithm when packaging code into a VBA Project within a Microsoft Office file. The specification can be found here: https://msdn.microsoft.com/en-us/library/dd923471(v=office.12).aspx
+
+ VBA uses a compression algorithm when packaging code into a VBA Project within a Microsoft Office file.
+ The specification can be found here: https://msdn.microsoft.com/en-us/library/dd923471(v=office.12).aspx
+
https://github.com/rossknudsen/Kavod.Vba.Compression
- 0.0.2.0
- 0.0.2.0
https://github.com/rossknudsen/Kavod.Vba.Compression
- https://raw.githubusercontent.com/rossknudsen/Kavod.Vba.Compression/master/LICENSE
- 0.0.2-alpha
+ MIT
+ 0.0.2
+ alpha