Skip to content
This repository was archived by the owner on Aug 30, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<TargetFrameworks>net462;netcoreapp3.0</TargetFrameworks>
<RootNamespace>Microsoft.Toolkit.Win32.Tools</RootNamespace>
<AssemblyName>Microsoft.Toolkit.Win32.Tools.Package</AssemblyName>
<Title>Windows Community Toolkit Tools for XAML Islands</Title>
<Description>This library provides XAML islands common helpers applications. It is part of the Windows Community Toolkit.</Description>
<PackageTags>XAML Islands Tools</PackageTags>
<PackageId>Microsoft.Toolkit.Win32.UI.Tools</PackageId>
<Platforms>x64;x86;AnyCPU</Platforms>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IsNativeProject>true</IsNativeProject>
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
<IncludeBuildOutput>false</IncludeBuildOutput>
<IsTool>true</IsTool>
</PropertyGroup>

<ItemGroup>
<Content Include="..\Microsoft.WinRT.Win32.targets">
<Pack>true</Pack>
<PackagePath>build</PackagePath>
</Content>

<Content Include="Microsoft.Toolkit.Win32.UI.Tools.props">
<Pack>true</Pack>
<PackagePath>build</PackagePath>
</Content>

<Content Include="Microsoft.Toolkit.Win32.UI.Tools.targets">
<Pack>true</Pack>
<PackagePath>build</PackagePath>
</Content>

<Content Include="$(MSBuildProgramFiles32)\Windows Kits\10\bin\10.0.$(DefaultTargetPlatformVersion).0\x86\mt.exe">
<Pack>true</Pack>
<PackagePath>tools</PackagePath>
</Content>
<Content Include="$(MSBuildProgramFiles32)\Windows Kits\10\bin\10.0.$(DefaultTargetPlatformVersion).0\x86\mt.exe.config">
<Pack>true</Pack>
<PackagePath>tools</PackagePath>
</Content>
<Content Include="$(MSBuildProgramFiles32)\Windows Kits\10\bin\10.0.$(DefaultTargetPlatformVersion).0\x86\midlrtmd.dll">
<Pack>true</Pack>
<PackagePath>tools</PackagePath>
</Content>

</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.VCRTForwarders.140" Version="1.0.0-rc">
<PrivateAssets>analyzers</PrivateAssets>
</PackageReference>
<ProjectReference Include="..\Microsoft.Toolkit.Win32.UI.XamlApplication.Package\Microsoft.Toolkit.Win32.UI.XamlApplication.Package.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="Microsoft.WinRT.Win32.targets" />
</Project>
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="Microsoft.WinRT.Win32.targets" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@
</PropertyGroup>

<ItemGroup>
<Content Include="..\Microsoft.WinRT.Win32.targets">
<Pack>true</Pack>
<PackagePath>build</PackagePath>
</Content>

<Content Include="Microsoft.Toolkit.UI.XamlHost.props">
<Pack>true</Pack>
Expand All @@ -27,22 +23,12 @@
<PackagePath>build</PackagePath>
</Content>

<Content Include="$(MSBuildProgramFiles32)\Windows Kits\10\bin\10.0.$(DefaultTargetPlatformVersion).0\x86\mt.exe">
<Pack>true</Pack>
<PackagePath>tools</PackagePath>
</Content>
<Content Include="$(MSBuildProgramFiles32)\Windows Kits\10\bin\10.0.$(DefaultTargetPlatformVersion).0\x86\mt.exe.config">
<Pack>true</Pack>
<PackagePath>tools</PackagePath>
</Content>
<Content Include="$(MSBuildProgramFiles32)\Windows Kits\10\bin\10.0.$(DefaultTargetPlatformVersion).0\x86\midlrtmd.dll">
<Pack>true</Pack>
<PackagePath>tools</PackagePath>
</Content>

</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Microsoft.Toolkit.Win32.UI.Tools\Microsoft.Toolkit.Win32.UI.Tools.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
<ProjectReference Include="..\Microsoft.Toolkit.Win32.UI.XamlApplication.Package\Microsoft.Toolkit.Win32.UI.XamlApplication.Package.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
Expand Down
Loading