Skip to content

Commit

Permalink
Fix #1487: .NET Fx version of Multitool crashes on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
Larry Golding committed May 9, 2019
1 parent d329206 commit c0ca29e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions src/ReleaseHistory.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,3 +377,6 @@

## **v2.1.0** [Sdk](https://www.nuget.org/packages/Sarif.Sdk/2.1.0) | [Driver](https://www.nuget.org/packages/Sarif.Driver/2.1.0) | [Converters](https://www.nuget.org/packages/Sarif.Converters/2.1.0)) | [Multitool](https://www.nuget.org/packages/Sarif.Multitool/2.1.0)
* API NON-BREAKING: `PhysicalLocation.id` property is getting lost during 2.1.0 pre-release transformation. https://github.com/microsoft/sarif-sdk/issues/1479

## **v2.1.1** [Sdk](https://www.nuget.org/packages/Sarif.Sdk/2.1.1) | [Driver](https://www.nuget.org/packages/Sarif.Driver/2.1.1) | [Converters](https://www.nuget.org/packages/Sarif.Converters/2.1.1)) | [Multitool](https://www.nuget.org/packages/Sarif.Multitool/2.1.1)
* BUGFIX: Multitool crashes on launch: Can't find CommandLine.dll. https://github.com/microsoft/sarif-sdk/issues/1487
4 changes: 2 additions & 2 deletions src/Sarif.Driver/Sarif.Driver.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
Expand All @@ -17,7 +17,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.2.1" />
<PackageReference Include="CommandLineParser" Version="2.5.0" />
<PackageReference Include="System.Composition" Version="1.2.0" />
</ItemGroup>

Expand Down
6 changes: 3 additions & 3 deletions src/build.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<Copyright Condition=" '$(Copyright)' == '' ">© Microsoft Corporation. All rights reserved.</Copyright>

<!-- VersionPrefix denotes the current Semantic Version for the SDK. Must be updated before every nuget drop. -->
<VersionPrefix>2.1.0</VersionPrefix>
<VersionPrefix>2.1.1</VersionPrefix>

<!-- SchemaVersionAsPublishedToSchemaStoreOrg identifies the current published version on json schema store at http://json.schemastore.org/ -->
<SchemaVersionAsPublishedToSchemaStoreOrg>2.1.0-rtm.0</SchemaVersionAsPublishedToSchemaStoreOrg>
Expand All @@ -29,9 +29,9 @@
place. These properties are actually used by the PowerShell script that
hides the previous package versions on nuget.org.
-->
<PreviousVersionPrefix>2.0.0-csd.2.beta.2019-04-03</PreviousVersionPrefix>
<PreviousVersionPrefix>2.0.0</PreviousVersionPrefix>
<PreviousSchemaVersionAsPublishedToSchemaStoreOrg>2.1.0-beta.2</PreviousSchemaVersionAsPublishedToSchemaStoreOrg>
<PreviousPackageVersion>2.1.0-rtm.0</PreviousPackageVersion>
<PreviousPackageVersion>2.1.0</PreviousPackageVersion>
</PropertyGroup>

<PropertyGroup Label="Build">
Expand Down

0 comments on commit c0ca29e

Please sign in to comment.