-
Notifications
You must be signed in to change notification settings - Fork 1
/
TWatchSKDesigner.csproj
88 lines (88 loc) · 3.67 KB
/
TWatchSKDesigner.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
87
88
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Configurations>Debug;Release;Setup</Configurations>
<RuntimeIdentifiers>osx-x64</RuntimeIdentifiers>
<!--<Nullable>enable</Nullable>-->
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
<ItemGroup>
<AvaloniaXaml Remove="TWatchDesignerWinSetup\**" />
<Compile Remove="TWatchDesignerWinSetup\**" />
<EmbeddedResource Remove="TWatchDesignerWinSetup\**" />
<None Remove="TWatchDesignerWinSetup\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Assets\SignalK.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="0.10.16" />
<PackageReference Include="Avalonia.Controls.DataGrid" Version="0.10.16" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.16" />
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.16" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.16" />
<PackageReference Include="Dotnet.Bundle" Version="0.9.13" />
<PackageReference Include="MaterialDesign.Avalonia.PackIcon" Version="1.25.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Octokit" Version="1.0.0" />
<PackageReference Include="System.IO.Ports" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<Compile Update="Controls\FloatEditor.axaml.cs">
<DependentUpon>FloatEditor.axaml</DependentUpon>
</Compile>
<Compile Update="Controls\ButtonControl.axaml.cs">
<DependentUpon>ButtonControl.axaml</DependentUpon>
</Compile>
<Compile Update="Controls\PutEditor.axaml.cs">
<DependentUpon>PutEditor.axaml</DependentUpon>
</Compile>
<Compile Update="Controls\XYEditor.axaml.cs">
<DependentUpon>XYEditor.axaml</DependentUpon>
</Compile>
<Compile Update="Controls\ColorPickerEditor.axaml.cs">
<DependentUpon>ColorPickerEditor.axaml</DependentUpon>
</Compile>
<Compile Update="Modals\PutEditorModal.axaml.cs">
<DependentUpon>PutEditorModal.axaml</DependentUpon>
</Compile>
<Compile Update="Modals\ConfirmBox.axaml.cs">
<DependentUpon>ConfirmBox.axaml</DependentUpon>
</Compile>
<Compile Update="Modals\ColorPicker.axaml.cs">
<DependentUpon>ColorPicker.axaml</DependentUpon>
</Compile>
<Compile Update="Modals\SelectUnitConversion.axaml.cs">
<DependentUpon>SelectUnitConversion.axaml</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.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<PropertyGroup>
<CFBundleName>TWatchSK Designer</CFBundleName>
<!-- Also defines .app file name -->
<CFBundleDisplayName>TWatchSK Designer</CFBundleDisplayName>
<CFBundleIdentifier>eu.jandytrych.twatchskdesigner</CFBundleIdentifier>
<CFBundleVersion>1.1.0</CFBundleVersion>
<CFBundleShortVersionString>1.1</CFBundleShortVersionString>
<CFBundlePackageType>APPL</CFBundlePackageType>
<CFBundleSignature>????</CFBundleSignature>
<CFBundleExecutable>TWatchSKDesigner</CFBundleExecutable>
<CFBundleIconFile>AppName.icns</CFBundleIconFile>
<!-- Will be copied from output directory -->
<NSPrincipalClass>NSApplication</NSPrincipalClass>
<NSHighResolutionCapable>true</NSHighResolutionCapable>
</PropertyGroup>
</Project>