-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMarkus.csproj
62 lines (54 loc) · 2.19 KB
/
Markus.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<AssemblyName>markus</AssemblyName>
<RuntimeIdentifiers>win10-x64</RuntimeIdentifiers>
<PublishReadyToRun>true</PublishReadyToRun>
</PropertyGroup>
<ItemGroup>
<None Remove="Example\alexanderPushnoy.jpg" />
<None Remove="Example\example.md" />
<None Remove="Example\Титульник.docx" />
<None Remove="gost.dotm" />
</ItemGroup>
<ItemGroup>
<Content Include="Example\alexanderPushnoy.jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Example\example.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Example\Титульник.docx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Themes\gost7-32-2017.dotm">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="DocumentFormat.OpenXml" Version="2.19.0" />
<PackageReference Include="Markdig" Version="0.30.4" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.3" />
<PackageReference Include="Spectre.Console" Version="0.45.0" />
</ItemGroup>
<ItemGroup>
<Content Include="Themes\themeDefinitions.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Update="Schemas\manifestSchema.json">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="Schemas\themeConfigSchema.json">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
<ProjectExtensions><VisualStudio><UserProperties themes_4themedefinitions_1json__JsonSchema="..\Schemas\themeConfigSchema.json" /></VisualStudio></ProjectExtensions>
</Project>