Skip to content

Commit 7e0fa14

Browse files
committed
Fix vs19 manifest and build
1 parent 5ee770d commit 7e0fa14

File tree

2 files changed

+12
-16
lines changed

2 files changed

+12
-16
lines changed

UnityMixedCallstack.csproj

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
55
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
@@ -9,6 +9,7 @@
99
<VsixType>v3</VsixType>
1010
<NuGetPackageImportStamp>
1111
</NuGetPackageImportStamp>
12+
<TargetFrameworkProfile />
1213
</PropertyGroup>
1314
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1415
<PropertyGroup>
@@ -20,7 +21,7 @@
2021
<AppDesignerFolder>Properties</AppDesignerFolder>
2122
<RootNamespace>UnityMixedCallStack</RootNamespace>
2223
<AssemblyName>UnityMixedCallStack</AssemblyName>
23-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
24+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
2425
<FileAlignment>512</FileAlignment>
2526
<GeneratePkgDefFile>false</GeneratePkgDefFile>
2627
<!--Root directory to Concord SDK install; includes the trailing backslash '\'.-->
@@ -54,14 +55,8 @@
5455
<StartArguments>/rootsuffix Exp</StartArguments>
5556
</PropertyGroup>
5657
<ItemGroup>
57-
<Reference Include="Microsoft.VisualStudio.Shell.14.0, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
58-
<Reference Include="Microsoft.VisualStudio.Shell.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
5958
<Reference Include="System" />
6059
<Reference Include="System.Core" />
61-
<Reference Include="Microsoft.VisualStudio.Debugger.Engine">
62-
<HintPath>$(ConcordSDKDir)Reference Assemblies\Microsoft.VisualStudio.Debugger.Engine.dll</HintPath>
63-
<Private>False</Private>
64-
</Reference>
6560
</ItemGroup>
6661
<ItemGroup>
6762
<Compile Include="FuzzyRangeComparer.cs" />
@@ -79,10 +74,11 @@
7974
</None>
8075
</ItemGroup>
8176
<ItemGroup>
82-
<PackageReference Include="Microsoft.VisualStudio.Sdk.BuildTasks.14.0">
83-
<Version>14.9.23</Version>
84-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
85-
<PrivateAssets>all</PrivateAssets>
77+
<PackageReference Include="Microsoft.VisualStudio.Debugger.Engine">
78+
<Version>17.0.2012801</Version>
79+
</PackageReference>
80+
<PackageReference Include="Microsoft.VisualStudio.Shell.15.0">
81+
<Version>17.1.32210.191</Version>
8682
</PackageReference>
8783
</ItemGroup>
8884
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

source.extension.vsixmanifest

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="UnityMixedCallstack.mderoy.1bc395e8-c1ea-4a2d-8a37-19e7f0c302b9" Version="2.6" Language="en-US" Publisher="Jb Evain, Michael DeRoy, Jonathan Chambers, Alex Thibodeau" />
4+
<Identity Id="UnityMixedCallstack.mderoy.1bc395e8-c1ea-4a2d-8a37-19e7f0c302b9" Version="2.6.1" Language="en-US" Publisher="Jb Evain, Michael DeRoy, Jonathan Chambers, Alex Thibodeau" />
55
<DisplayName>Unity Mixed Callstack</DisplayName>
66
<Description xml:space="preserve">Visual Studio native debugger extension to help debug native applications using Mono. Originally developed by Jb Evain, Updated for Unity by Michael DeRoy and Jonathan Chambers</Description>
77
</Metadata>
88
<Installation>
9-
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0, 17.0]" />
9+
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0, 17.0)" />
1010
</Installation>
1111
<Dependencies>
12-
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="4.5" />
12+
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
1313
</Dependencies>
1414
<Assets>
1515
<Asset Type="DebuggerEngineExtension" Path="UnityMixedCallstack.vsdconfig"/>
1616
</Assets>
1717
<Prerequisites>
18-
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0.25904.2,)" DisplayName="Visual Studio core editor" />
18+
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0, 17.0)" DisplayName="Visual Studio core editor" />
1919
</Prerequisites>
2020
</PackageManifest>

0 commit comments

Comments
 (0)