Skip to content

Commit

Permalink
Address PR issues
Browse files Browse the repository at this point in the history
  • Loading branch information
WardenGnaw committed Aug 31, 2024
1 parent 4d6d79a commit dd0bab8
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build/version.settings.targets
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!--SxS: These three properties should be changed at the start of a new version, VersionZeroYear should be the year
before the start of the project.-->
<MajorVersion>17</MajorVersion>
<MinorVersion>8</MinorVersion>
<MinorVersion>12</MinorVersion>
<VersionZeroYear>2022</VersionZeroYear>
<!-- Note: for compatibility, we leave the default assembly version of the repo at 14.0.
If we ever decide to change this, make sure that you notify partner teams such as C++ IOT -->
Expand Down
8 changes: 6 additions & 2 deletions src/DebugEngineHost/DebugEngineHost.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,12 @@
<PrivateAssets>all</PrivateAssets>
</PackageReference>

<PackageReference Include="Microsoft.IO.Redist" Version="$(Microsoft_IO_Redist_Version)" />
<PackageReference Include="System.Text.Json" Version="$(System_Text_Json_Version)" />
<PackageReference Include="Microsoft.IO.Redist" Version="$(Microsoft_IO_Redist_Version)">
<ExcludeAssets>all</ExcludeAssets>
</PackageReference>
<PackageReference Include="System.Text.Json" Version="$(System_Text_Json_Version)">
<ExcludeAssets>all</ExcludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup Label="Assembly to Generate">
Expand Down
8 changes: 6 additions & 2 deletions src/MIDebugPackage/MIDebugPackage.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,12 @@
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="$(Microsoft_VSSDK_BuildTools_Version)" GeneratePathProperty="true" />
<PackageReference Include="Microsoft.VisualStudioEng.MicroBuild.Core" Version="$(Microsoft_VisualStudioEng_MicroBuild_Core_Version)" GeneratePathProperty="true" />

<PackageReference Include="Microsoft.IO.Redist" Version="$(Microsoft_IO_Redist_Version)" />
<PackageReference Include="System.Text.Json" Version="$(System_Text_Json_Version)" />
<PackageReference Include="Microsoft.IO.Redist" Version="$(Microsoft_IO_Redist_Version)">
<ExcludeAssets>all</ExcludeAssets>
</PackageReference>
<PackageReference Include="System.Text.Json" Version="$(System_Text_Json_Version)">
<ExcludeAssets>all</ExcludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 6 additions & 2 deletions src/SSHDebugPS/SSHDebugPS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,12 @@

<PackageReference Include="Microsoft.VisualStudioEng.MicroBuild.Core" Version="$(Microsoft_VisualStudioEng_MicroBuild_Core_Version)" GeneratePathProperty="true" />

<PackageReference Include="Microsoft.IO.Redist" Version="$(Microsoft_IO_Redist_Version)" />
<PackageReference Include="System.Text.Json" Version="$(System_Text_Json_Version)" />
<PackageReference Include="Microsoft.IO.Redist" Version="$(Microsoft_IO_Redist_Version)">
<ExcludeAssets>all</ExcludeAssets>
</PackageReference>
<PackageReference Include="System.Text.Json" Version="$(System_Text_Json_Version)">
<ExcludeAssets>all</ExcludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit dd0bab8

Please sign in to comment.