This repository was archived by the owner on Aug 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 94
Refactor Win32 tools for use in native projects #138
Merged
Merged
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c18e9b3
Refactor Win32 tools for use in native projects
ocalvo 06eb512
Fix a bug where XamlHost.dll is not written in the manifest
ocalvo 1e080b0
Rename package
ocalvo 40a036a
Merge branch 'master' into NewNuGetToolPackage
ocalvo 6ab0677
Apply PR feedback
ocalvo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
58 changes: 58 additions & 0 deletions
58
Microsoft.Toolkit.Win32.UI.Tools/Microsoft.Toolkit.Win32.UI.Tools.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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> | ||
3 changes: 3 additions & 0 deletions
3
Microsoft.Toolkit.Win32.UI.Tools/Microsoft.Toolkit.Win32.UI.Tools.props
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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> |
4 changes: 4 additions & 0 deletions
4
Microsoft.Toolkit.Win32.UI.Tools/Microsoft.Toolkit.Win32.UI.Tools.targets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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> |
1 change: 0 additions & 1 deletion
1
Microsoft.Toolkit.Win32.UI.XamlHost/Microsoft.Toolkit.UI.XamlHost.targets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.