11 Commits

Author SHA1 Message Date
Matteo Cominetti c0e691e6e9 bump version 2020-07-30 17:13:51 +01:00
Matteo Cominetti bf7fb4d0a4 fixes RemoveAssemblyTestCases 2020-07-30 17:12:45 +01:00
Matteo Cominetti 572ea33edb Update azure-pipelines.yml for Azure Pipelines 2020-07-30 15:32:45 +01:00
Matteo Cominetti b0cab443bb Update azure-pipelines.yml for Azure Pipelines 2020-07-30 15:27:10 +01:00
Matteo Cominetti c572444603 Update azure-pipelines.yml for Azure Pipelines 2020-07-30 15:22:03 +01:00
Matteo Cominetti da4baa6f12 Update azure-pipelines.yml for Azure Pipelines 2020-07-30 14:55:16 +01:00
Matteo Cominetti 81c396dd80 Update azure-pipelines.yml for Azure Pipelines 2020-07-30 14:54:06 +01:00
Matteo Cominetti d12738e609 Merge branch 'master' of github.com:Speckle-Next/xunit.runner.wpf 2020-07-30 14:50:15 +01:00
Matteo Cominetti 2187a6129f bump 2020-07-30 14:49:39 +01:00
Matteo Cominetti 0e2dda20a3 Update azure-pipelines.yml for Azure Pipelines 2020-07-30 14:49:00 +01:00
Matteo Cominetti 39e42e894e bumps version 2020-07-30 14:41:45 +01:00
3 changed files with 9 additions and 18 deletions
+5 -16
View File
@@ -6,30 +6,18 @@
trigger:
branches:
include:
- refs/tags/*
- master
- refs/tags/*
pool:
vmImage: 'windows-latest'
variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
steps:
- powershell: |
$tags = git tag --sort=-creatordate
$tag = $tags[0]
#update build number
- bash: |
echo "##vso[build.updatebuildnumber]Release $(tag)"
condition: eq(variables['release.enabled'], 'true')
name: SetReleaseBuildName
- task: NuGetToolInstaller@1
- task: NuGetCommand@2
@@ -59,6 +47,7 @@ steps:
publishLocation: 'Container'
- powershell: |
nuget push -ApiKey $env:APIKEY -Source https://api.nuget.org/v3/index.json $(Build.ArtifactStagingDirectory)/**/*.nupkg
If ($env:BRANCH.StartsWith('refs/tags/')) { nuget push -ApiKey $env:APIKEY -Source https://api.nuget.org/v3/index.json $(Build.ArtifactStagingDirectory)/**/*.nupkg }
env:
APIKEY: $(nuget-apikey)
APIKEY: $(nuget-apikey)
BRANCH: $(Build.SourceBranch)
@@ -505,7 +505,7 @@ namespace Xunit.Runner.Wpf.ViewModel
var i = 0;
while (i < this.allTestCases.Count)
{
if (string.Compare(this.allTestCases[i].AssemblyFileName, assemblyPath, StringComparison.OrdinalIgnoreCase) == 0)
if (string.Compare(this.allTestCases[i].AssemblyPath, assemblyPath, StringComparison.OrdinalIgnoreCase) == 0)
{
this.allTestCaseUniqueIDs.Remove(this.allTestCases[i].UniqueID);
this.allTestCases.RemoveAt(i);
@@ -16,7 +16,9 @@
<PackageIcon></PackageIcon>
<PackageIconUrl>https://avatars2.githubusercontent.com/u/2092016</PackageIconUrl>
<PackageIconUrl>https://avatars2.githubusercontent.com/u/2092016</PackageIconUrl>
<Version>1.0.5</Version>
<Version>1.0.8</Version>
<AssemblyVersion>1.0.8.0</AssemblyVersion>
<FileVersion>1.0.8.0</FileVersion>
</PropertyGroup>
<ItemGroup>