mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 12:11:09 +01:00
* Update gitignore.js * Update gitignore.js * Add custom color for negations * Add custom color for negations * Regex refactoring * Regex refactoring again * Move customTokenColors to a separate file * Move customTokenColors to a separate file * Update devdocs * Use kebab case for token names * Update negation color * Update index.html formatting
48 lines
1.7 KiB
XML
48 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\Version.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>
|
|
<Version>$(Version).0</Version>
|
|
<Authors>Microsoft Corporation</Authors>
|
|
<Product>PowerToys</Product>
|
|
<Description>PowerToys FilePreviewCommon</Description>
|
|
<AssemblyName>PowerToys.FilePreviewCommon</AssemblyName>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Markdig.Signed" />
|
|
<PackageReference Include="System.Text.Encoding.CodePages" />
|
|
<PackageReference Include="UTF.Unknown" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Assets\Monaco\customLanguages\reg.js">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Assets\Monaco\customLanguages\gitignore.js">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Assets\Monaco\index.html">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Assets\Monaco\monacoSpecialLanguages.js">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Assets\Monaco\customTokenColors.js">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<Content Include="Assets\Monaco\monacoSRC\**">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<None Update="Assets\Monaco\monaco_languages.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|