-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathOpenTrace.csproj
More file actions
126 lines (109 loc) · 4.94 KB
/
OpenTrace.csproj
File metadata and controls
126 lines (109 loc) · 4.94 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<Project Sdk="Eto.Forms/2.10.2">
<!--
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>
<TargetFramework Condition="'$(RuntimeIdentifier)' == 'win-x64'">net48</TargetFramework>
<TargetFramework Condition="'$(RuntimeIdentifier)' == 'win-arm64'">net481</TargetFramework>
<TargetFramework Condition="'$(TargetFramework)' == ''">net8.0</TargetFramework>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<OutputType>Exe</OutputType>
<PackageProjectUrl>https://github.com/Archeb/opentrace</PackageProjectUrl>
<Title>OpenTrace</Title>
<ApplicationIcon>Assets\Icons\icon.ico</ApplicationIcon>
<PackageIcon>Assets\Icons\icon.png</PackageIcon>
<Version>1.5.1</Version>
<Platforms>AnyCPU;x64;ARM64</Platforms>
<PlatformTarget Condition="'$(RuntimeIdentifier)' == 'win-x64'">x64</PlatformTarget>
<PlatformTarget Condition="'$(RuntimeIdentifier)' == 'win-arm64'">ARM64</PlatformTarget>
<PlatformTarget Condition="'$(PlatformTarget)' == ''">AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsOsPlatform(OSX)) AND $(Configuration) == 'Release'">
<EnableCodeSigning Condition="'$(SignApp)' == 'True' AND '$(MAC_SIGNING_IDENTITY)' != ''">True</EnableCodeSigning>
<CodeSigningIdentity>$(MAC_SIGNING_IDENTITY)</CodeSigningIdentity>
<EnableDmgBuild Condition="'$(MakeDmg)' == 'True'">True</EnableDmgBuild>
<EnableNotarization Condition="'$(NotarizeApp)' == 'True'">True</EnableNotarization>
<NotarizationPasswordAlias>AC_PASSWORD</NotarizationPasswordAlias>
<EnableNotarizationStapler Condition="'$(SkipStaple)' == 'True'">False</EnableNotarizationStapler>
<EnableBundleMono>False</EnableBundleMono>
<DmgBackgroundImage>Assets/DmgBackground.png</DmgBackgroundImage>
<DmgIconSize>90</DmgIconSize>
<DmgAppLocation>166, 201</DmgAppLocation>
<DmgBounds>400, 200, 1120, 660</DmgBounds>
<DmgApplicationsShortcutLocation>571, 201</DmgApplicationsShortcutLocation>
</PropertyGroup>
<PropertyGroup>
<NoWarn>$(NoWarn);MSB3277</NoWarn>
</PropertyGroup>
<ItemGroup>
<Content Include="Assets\Icons\icon.ico" />
<Content Include="Assets\Icons\Icon.icns">
<Link>Icon.icns</Link>
</Content>
<None Include="Info.plist" />
<Content Include="Assets\Icons\icon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>icon.png</Link>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Advexp.Settings.Local" Version="2.7.0" />
<PackageReference Include="Ae.Dns.Client" Version="3.1.0" />
<PackageReference Include="Eto.Serialization.Xaml" Version="2.10.2" />
<PackageReference Include="MaxMind.Db" Version="4.3.4" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.3650.58" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" PrivateAssets="All" Version="1.0.3" />
</ItemGroup>
<ItemGroup>
<Compile Update="UI\Forms\TextOutputForm.xeto.cs">
<DependentUpon>TextOutputForm.xeto</DependentUpon>
</Compile>
<Compile Update="UI\Forms\ExceptionalOutputForm.xeto.cs">
<DependentUpon>ExceptionalOutputForm.xeto</DependentUpon>
</Compile>
<Compile Update="UI\Dialogs\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.fr.resx">
<SubType>Designer</SubType>
</EmbeddedResource>
<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="Assets\Icons\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Update="Eto.Platform.Wpf" Version="2.10.2">
<NoWarn>NU1701</NoWarn>
</PackageReference>
</ItemGroup>
<ItemGroup>
<PackageReference Update="Eto.Forms" Version="2.10.2" />
</ItemGroup>
</Project>