mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-20 10:10:10 +01:00
21 lines
1013 B
XML
21 lines
1013 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
<!-- Look at Directory.Build.props in root for common stuff as well -->
|
|||
|
|
<Import Project="..\..\..\Common.Dotnet.CsWinRT.props" />
|
|||
|
|
<Import Project="..\..\..\Common.Dotnet.AotCompatibility.props" />
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|||
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\..\..\common\ManagedCommon\ManagedCommon.csproj" />
|
|||
|
|
<ProjectReference Include="..\..\..\common\interop\PowerToys.Interop.vcxproj" />
|
|||
|
|
<ProjectReference Include="..\..\..\common\Common.UI\Common.UI.csproj" />
|
|||
|
|
<ProjectReference Include="..\..\..\common\PowerToys.ModuleContracts\PowerToys.ModuleContracts.csproj" />
|
|||
|
|
<ProjectReference Include="..\WorkspacesCsharpLibrary\WorkspacesCsharpLibrary.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
</Project>
|