forked from CosmosOS/Cosmos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCosmos.VS.DebugEngine.csproj
70 lines (57 loc) · 3.66 KB
/
Cosmos.VS.DebugEngine.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<RuntimeIdentifier>win-x32</RuntimeIdentifier>
</PropertyGroup>
<PropertyGroup>
<Net48>True</Net48>
</PropertyGroup>
<ItemGroup>
<Content Include="Resources\Icon.png" IncludeInVSIX="True" />
<Content Include="Cosmos.DebugEngine.pkgdef" CopyToOutputDirectory="Always" IncludeInVSIX="True" />
<EmbeddedResource Update="VSPackage.resx" MergeWithCTO="True" />
<VSCTCompile Include="VSPackage.vsct" ResourceName="Menus.ctmenu" SubType="Designer" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Cosmos.Build.Common" />
<PackageReference Include="IL2CPU.Debug.Symbols" />
<PackageReference Include="Microsoft.VisualStudio.Debugger.Interop.15.0" Version="15.9.28308" />
<PackageReference Include="Microsoft.VisualStudio.Shell.15.0" Version="16.7.30329.88" />
<PackageReference Include="Microsoft.VisualStudio.Shell.Interop.11.0" Version="16.7.30329.88" />
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="16.8.3038">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.0.6" />
<PackageReference Include="SQLitePCLRaw.bundle_green" Version="2.0.6" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.7.0" />
<PackageReference Include="Microsoft.ServiceHub.Framework" Version="3.0.3075" />
<PackageReference Include="System.Runtime" Version="4.3.1" />
<PackageReference Include="System.ServiceProcess.ServiceController" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Cosmos.Debug.Common\Cosmos.Debug.Common.csproj" />
<ProjectReference Include="..\Cosmos.Debug.DebugConnectors\Cosmos.Debug.DebugConnectors.csproj" />
<ProjectReference Include="..\Cosmos.Debug.Hosts\Cosmos.Debug.Hosts.csproj" />
<ProjectReference Include="..\Cosmos.VS.Windows\Cosmos.VS.Windows.csproj">
<Name>Cosmos.VS.Windows</Name>
<IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup;GetCopyToOutputDirectoryItems;SatelliteDllsProjectOutputGroup;PkgdefProjectOutputGroup</IncludeOutputGroupsInVSIX>
<IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup</IncludeOutputGroupsInVSIXLocalOnly>
</ProjectReference>
</ItemGroup>
<Target Name="IncludeESqliteInVsix" BeforeTargets="ResolveAssemblyReferences" AfterTargets="InjectReference_fe7f61ec-723c-48c6-a80d-1e957cf2feaf">
<ItemGroup>
<Content Condition="'%(Content.Filename)' == 'e_sqlite3'">
<IncludeInVSIX>True</IncludeInVSIX>
</Content>
</ItemGroup>
</Target>
<Target Name="IncludePackageReferenceDependencies" AfterTargets="GetVsixSourceItems">
<ItemGroup>
<VSIXSourceItem Include="@(ReferenceCopyLocalPaths)" Condition="!$([System.String]::new('%(ReferenceCopyLocalPaths.Filename)').StartsWith('Microsoft.VisualStudio')) AND !$([System.String]::new('%(ReferenceCopyLocalPaths.Filename)').StartsWith('System')) AND !$([System.String]::new('%(ReferenceCopyLocalPaths.Filename)').StartsWith('EnvDTE')) AND '%(ReferenceCopyLocalPaths.Filename)' != 'mscorlib' AND '%(ReferenceCopyLocalPaths.Filename)' != 'stdole'" />
</ItemGroup>
</Target>
<ItemGroup>
<PackageReference Update="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" />
</ItemGroup>
</Project>