-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFastJira.csproj
73 lines (64 loc) · 2.67 KB
/
FastJira.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
63
64
65
66
67
68
69
70
71
72
73
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>FastJira</RootNamespace>
<UseWPF>true</UseWPF>
<StartupObject>FastJira.App</StartupObject>
<ApplicationIcon>Images\zap.ico</ApplicationIcon>
<AssemblyName>FastJira</AssemblyName>
<Copyright>Michael Galetzka</Copyright>
<RepositoryUrl>https://github.com/Cultrarius/Fast-Jira</RepositoryUrl>
<PackageProjectUrl>https://github.com/Cultrarius/Fast-Jira</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>
<ItemGroup>
<None Remove="Images\external-link.png" />
<None Remove="Images\file.png" />
<None Remove="Images\search.png" />
<None Remove="Images\sliders.png" />
</ItemGroup>
<ItemGroup>
<Page Remove="ui\App.xaml" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="ui\App.xaml" />
</ItemGroup>
<ItemGroup>
<Resource Include="Images\file.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
<Resource Include="Images\search.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
<Resource Include="Images\sliders.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Images\external-link.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Lifti.Core" Version="2.0.0-beta9" />
<PackageReference Include="Markdig.Wpf" Version="0.3.1" />
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Rest.ClientRuntime" Version="2.3.2" />
<PackageReference Include="NLog" Version="4.7.2" />
<PackageReference Include="Svg" Version="3.1.1" />
<PackageReference Include="System.Diagnostics.Tracing" Version="4.3.0" />
<PackageReference Include="System.Drawing.Common" Version="4.7.0" />
<PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0" />
<PackageReference Include="System.Runtime.Extensions" Version="4.3.1" />
<PackageReference Include="System.Runtime.Handles" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<None Update="NLog.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>