-
Notifications
You must be signed in to change notification settings - Fork 94
/
OpenTrace.csproj
86 lines (76 loc) · 3.02 KB
/
OpenTrace.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
74
75
76
77
78
79
80
81
82
83
84
85
86
<Project Sdk="Eto.Forms/2.7.5">
<!--
Set the BuildPlatform property to the Eto platform you wish to build for.
The default is the platform you are building on.
Valid values: Wpf, Windows, Mac64, XamMac2, Gtk, Direct2D
-->
<PropertyGroup>
<TargetFrameworks>;net48;net8.0</TargetFrameworks>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<OutputType>Exe</OutputType>
<PackageProjectUrl>https://github.com/Archeb/opentrace</PackageProjectUrl>
<Title>OpenTrace</Title>
<ApplicationIcon>icon.ico</ApplicationIcon>
<PackageIcon>icon.png</PackageIcon>
<Version>1.4.3.0</Version>
<Platforms>AnyCPU;x64</Platforms>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Content Include="icon.ico" />
<Content Include="Icon.icns" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Advexp.Settings.Local" Version="2.7.0" />
<PackageReference Include="Ae.Dns.Client" Version="1.0.0" />
<PackageReference Include="Eto.Serialization.Xaml" Version="2.7.5" />
<PackageReference Include="MaxMind.Db" Version="4.0.0" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.1938.49" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" PrivateAssets="All" Version="1.0.3" />
</ItemGroup>
<ItemGroup>
<Compile Update="TextOutputForm.xeto.cs">
<DependentUpon>TextOutputForm.xeto</DependentUpon>
</Compile>
<Compile Update="ExceptionalOutputForm.xeto.cs">
<DependentUpon>ExceptionalOutputForm.xeto</DependentUpon>
</Compile>
<Compile Update="PreferencesDialog.xeto.cs">
<DependentUpon>PreferencesDialog.xeto</DependentUpon>
</Compile>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.zh-HK.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
</EmbeddedResource>
<EmbeddedResource Update="Properties\Resources.zh-TW.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
</EmbeddedResource>
<EmbeddedResource Update="Properties\Resources.zh-CN.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
</EmbeddedResource>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Update="Eto.Platform.Wpf">
<NoWarn>NU1701</NoWarn>
</PackageReference>
</ItemGroup>
</Project>