Skip to content

Commit

Permalink
Merge branch 'main' into users/yongyan-gh/eslintfix1
Browse files Browse the repository at this point in the history
  • Loading branch information
yongyan-gh authored Feb 25, 2022
2 parents 673d133 + 25b7e57 commit c39764b
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/Sarif/ToDotNet/ToDotNet.targets
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
</PropertyGroup>

<PropertyGroup Condition="$(OS) == 'Windows_NT'">
<JsonSchemaToDotNetPath>$(MSBuildProjectDirectory)\..\packages\Microsoft.Json.Schema.ToDotNet.1.1.0\tools\net461\Microsoft.Json.Schema.ToDotNet.Cli.exe</JsonSchemaToDotNetPath>
<JsonSchemaToDotNetPath>$(MSBuildProjectDirectory)\..\packages\Microsoft.Json.Schema.ToDotNet.1.1.3\tools\net461\Microsoft.Json.Schema.ToDotNet.Cli.exe</JsonSchemaToDotNetPath>
<ExecCommand>&quot;$(NuGetPath)\NuGet.exe&quot; restore &quot;$(MSBuildThisFileDirectory)packages.config&quot; -PackagesDirectory &quot;$(MSBuildThisFileDirectory)\..\..\packages&quot; -ConfigFile &quot;$(NuGetConfigPath)&quot; -Verbosity quiet</ExecCommand>
</PropertyGroup>
<PropertyGroup Condition="$(OS) != 'Windows_NT'">
<JsonSchemaToDotNetPath>$(MSBuildProjectDirectory)\..\packages\Microsoft.Json.Schema.ToDotNet.1.1.0\tools\netcoreapp2.0\Microsoft.Json.Schema.ToDotNet.Cli.dll</JsonSchemaToDotNetPath>
<JsonSchemaToDotNetPath>$(MSBuildProjectDirectory)\..\packages\Microsoft.Json.Schema.ToDotNet.1.1.3\tools\netcoreapp3.1\Microsoft.Json.Schema.ToDotNet.Cli.dll</JsonSchemaToDotNetPath>
<ExecCommand>nuget restore &quot;$(MSBuildThisFileDirectory)packages.config&quot; -PackagesDirectory &quot;$(MSBuildThisFileDirectory)\..\..\packages&quot; -ConfigFile &quot;$(NuGetConfigPath)&quot; -Verbosity quiet</ExecCommand>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Sarif/ToDotNet/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.Json.Schema.ToDotNet" version="1.1.0" targetFramework="net461" />
<package id="Microsoft.Json.Schema.ToDotNet" version="1.1.3" targetFramework="net461" />
</packages>
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"messageStrings": {
"default": {
"text": "at \"{0}\": JSON syntax error: {1}"
"text": "{0}: JSON syntax error: {1}"
}
},
"defaultConfiguration": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
"id": "JSON1002",
"name": "RequiredPropertyMissing",
"fullDescription": {
"text": "A property required by the schema's \"required\" property is missing."
"text": "A property required by the schema's 'required' property is missing."
},
"messageStrings": {
"default": {
"text": "at \"{0}\": The required property \"{1}\" is missing."
"text": "{0}: The required property '{1}' is missing."
}
},
"defaultConfiguration": {
Expand Down
2 changes: 1 addition & 1 deletion src/Test.UnitTests.Sarif/Test.UnitTests.Sarif.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.10.2" />
<PackageReference Include="Microsoft.Json.Schema" Version="1.1.1" />
<PackageReference Include="Microsoft.Json.Schema" Version="1.1.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="Moq" Version="4.13.1" />
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" />
Expand Down
4 changes: 2 additions & 2 deletions src/WorkItems/WorkItems.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.2" />
<PackageReference Include="Microsoft.Extensions.Logging.ApplicationInsights" Version="2.13.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="3.1.2" />
<PackageReference Include="Microsoft.Json.Schema" Version="1.1.1" />
<PackageReference Include="Microsoft.Json.Schema.Validation" Version="1.1.1" />
<PackageReference Include="Microsoft.Json.Schema" Version="1.1.3" />
<PackageReference Include="Microsoft.Json.Schema.Validation" Version="1.1.3" />
<PackageReference Include="Microsoft.TeamFoundationServer.Client" Version="16.153.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="System.Text.Encodings.Web" Version="5.0.1" />
Expand Down

0 comments on commit c39764b

Please sign in to comment.