Skip to content

Commit

Permalink
Bumping submodules (mono#301)
Browse files Browse the repository at this point in the history
* Bump xamarin/debugger-libs@6e097ce

* Adding explicit references to CodeAnalysis packages

Co-authored-by: Luke Westendorf <lukewest@microsoft.com>
  • Loading branch information
MSLukeWest and Luke Westendorf authored Nov 8, 2022
1 parent a089e5a commit d15e47f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,14 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="GitInfo" Version="2.2.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="$(NuGetVersionRoslyn)" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="$(NuGetVersionRoslyn)" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="$(NuGetVersionRoslyn)" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="$(NuGetVersionRoslyn)" />
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.3.0-preview-3-32607-145" />
<PackageReference Include="Microsoft.VisualStudio.Interop" Version="17.3.0-preview-3-32607-106" />
<PackageReference Include="Microsoft.VisualStudio.SDK.VsixSuppression" Version="14.1.37" />
<PackageReference Include="Microsoft.VisualStudio.Debugger.Contracts" Version="17.4.0-beta.22368.1" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.1.0" />
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="16.9.1050">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand Down
7 changes: 4 additions & 3 deletions src/Debugging.VisualStudio/Debugging.VisualStudio.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@
<ItemGroup>
<PackageReference Include="GitInfo" Version="2.2.0" />
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.3.0-preview-3-32607-145" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.1.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="4.1.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="$(NuGetVersionRoslyn)" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="$(NuGetVersionRoslyn)" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="$(NuGetVersionRoslyn)" />
<PackageReference Include="Microsoft.VisualStudio.Interop" Version="17.3.0-preview-3-32607-106" />
<PackageReference Include="Microsoft.VisualStudio.ProjectSystem" Version="17.3.346-pre" />
<PackageReference Include="Microsoft.VisualStudio.ProjectSystem.Managed" Version="17.3.32-gd8b2cf4a2d" />
Expand Down Expand Up @@ -89,7 +90,7 @@
<NuGetFilesToSign Include="..\packages\system.diagnostics.tracer\**\lib\net45\System.Diagnostics.Tracer.dll">
<Authenticode>Microsoft400</Authenticode>
</NuGetFilesToSign>
</ItemGroup>
</ItemGroup>
<ItemGroup>
<None Include="Debugging.VisualStudio.targets" />
</ItemGroup>
Expand Down
4 changes: 4 additions & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
<Compile Include="$(MSBuildThisFileDirectory)GlobalAssemblyInfo.cs" />
</ItemGroup>

<PropertyGroup>
<NuGetVersionRoslyn Condition="$(NuGetVersionRoslyn) == ''">4.5.0-1.22517.2</NuGetVersionRoslyn>
</PropertyGroup>

<!-- CI properties for VSTS -->
<PropertyGroup>
<CI Condition="'$(CI)' == '' and '$(TF_BUILD)' == 'true'">true</CI>
Expand Down

0 comments on commit d15e47f

Please sign in to comment.