2022-01-18 15:52:22 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-12-10 11:53:01 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<Platforms>x64</Platforms>
|
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
|
<AssemblyTitle>PowerToys.GcodePreviewHandler</AssemblyTitle>
|
|
|
|
|
|
<AssemblyDescription>PowerToys GcodePreviewHandler</AssemblyDescription>
|
|
|
|
|
|
<AssemblyCompany>Microsoft Corp.</AssemblyCompany>
|
|
|
|
|
|
<AssemblyCopyright>Copyright (C) 2020 Microsoft Corporation</AssemblyCopyright>
|
|
|
|
|
|
<AssemblyProduct>PowerToys</AssemblyProduct>
|
|
|
|
|
|
<Company>Microsoft Corp.</Company>
|
|
|
|
|
|
<Product>PowerToys</Product>
|
|
|
|
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
|
|
|
|
<Description>PowerToys GcodePreviewHandler</Description>
|
|
|
|
|
|
<Copyright>Copyright (C) 2020 Microsoft Corporation</Copyright>
|
|
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
|
|
<DocumentationFile>$(SolutionDir)$(Platform)\$(Configuration)\modules\FileExplorerPreview\GcodePreviewPaneDocumentation.xml</DocumentationFile>
|
|
|
|
|
|
<OutputPath>$(SolutionDir)$(Platform)\$(Configuration)\modules\FileExplorerPreview\</OutputPath>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
|
|
|
|
<AssemblyName>PowerToys.GcodePreviewHandler</AssemblyName>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<ProjectGuid>{805306FF-A562-4415-8DEF-E493BDC45918}</ProjectGuid>
|
|
|
|
|
|
<RootNamespace>Microsoft.PowerToys.PreviewHandler.Gcode</RootNamespace>
|
2022-02-07 06:08:30 -08:00
|
|
|
|
<TargetFramework>net6.0-windows10.0.18362.0</TargetFramework>
|
2021-12-10 11:53:01 +00:00
|
|
|
|
<EnableComHosting>true</EnableComHosting>
|
|
|
|
|
|
<IntermediateOutputPath>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(AssemblyName)\</IntermediateOutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<Import Project="..\..\..\Version.props" />
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\..\..\codeAnalysis\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" />
|
|
|
|
|
|
<Compile Update="GcodePreviewHandlerControl.cs" />
|
2021-12-17 17:35:05 -06:00
|
|
|
|
<Compile Update="Properties\Resource.Designer.cs">
|
2021-12-10 11:53:01 +00:00
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
|
<DependentUpon>Resource.resx</DependentUpon>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.0">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
<PackageReference Include="System.IO.Abstractions" Version="12.2.5" />
|
|
|
|
|
|
<PackageReference Include="System.Runtime.WindowsRuntime" Version="4.7.0" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<AdditionalFiles Include="..\..\..\codeAnalysis\StyleCop.json">
|
|
|
|
|
|
<Link>StyleCop.json</Link>
|
|
|
|
|
|
</AdditionalFiles>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\common\PreviewHandlerCommon.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-12-17 17:35:05 -06:00
|
|
|
|
<EmbeddedResource Update="Properties\Resource.resx">
|
2021-12-10 11:53:01 +00:00
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
|
<LastGenOutput>Resource.Designer.cs</LastGenOutput>
|
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
|
</ItemGroup>
|
2021-12-17 17:35:05 -06:00
|
|
|
|
</Project>
|