ColorPicker.ModuleServices.csproj
1 <Project Sdk="Microsoft.NET.Sdk"> 2 <!-- Look at Directory.Build.props in root for common stuff as well --> 3 <Import Project="$(RepoRoot)src\Common.Dotnet.CsWinRT.props" /> 4 <Import Project="$(RepoRoot)src\Common.Dotnet.AotCompatibility.props" /> 5 6 <PropertyGroup> 7 <ImplicitUsings>enable</ImplicitUsings> 8 <Nullable>enable</Nullable> 9 <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> 10 <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> 11 <EnableDefaultCompileItems>false</EnableDefaultCompileItems> 12 </PropertyGroup> 13 14 <ItemGroup> 15 <Compile Include="ColorFormatValue.cs" /> 16 <Compile Include="ColorPickerService.cs" /> 17 <Compile Include="IColorPickerService.cs" /> 18 <Compile Include="ColorPickerServiceJsonContext.cs" /> 19 <Compile Include="SavedColor.cs" /> 20 </ItemGroup> 21 22 <ItemGroup> 23 <ProjectReference Include="..\..\..\common\ManagedCommon\ManagedCommon.csproj" /> 24 <ProjectReference Include="..\..\..\common\interop\PowerToys.Interop.vcxproj" /> 25 <ProjectReference Include="..\..\..\common\Common.UI\Common.UI.csproj" /> 26 <ProjectReference Include="..\..\..\common\PowerToys.ModuleContracts\PowerToys.ModuleContracts.csproj" /> 27 <ProjectReference Include="..\..\..\settings-ui\Settings.UI.Library\Settings.UI.Library.csproj" /> 28 </ItemGroup> 29 </Project>