-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileTransfer.csproj
49 lines (49 loc) · 2.25 KB
/
FileTransfer.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>11</LangVersion>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<RuntimeIdentifiers>osx-x64;win-x64;win-x86;linux-x64</RuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup>
<UseAppHost>true</UseAppHost>
</PropertyGroup>
<PropertyGroup>
<CFBundleName>FileTransfer</CFBundleName> <!-- Also defines .app file name -->
<CFBundleDisplayName>FileTransfer</CFBundleDisplayName>
<CFBundleIdentifier>com.duck-dev.file-transfer</CFBundleIdentifier>
<CFBundleVersion>0.1.1</CFBundleVersion>
<CFBundleShortVersionString>0.1.1</CFBundleShortVersionString>
<CFBundlePackageType>APPL</CFBundlePackageType>
<CFBundleSignature>????</CFBundleSignature>
<CFBundleExecutable>FileTransfer</CFBundleExecutable>
<CFBundleIconFile>FileTransferIcon.icns</CFBundleIconFile> <!-- Will be copied from output directory -->
<NSPrincipalClass>NSApplication</NSPrincipalClass>
<NSHighResolutionCapable>true</NSHighResolutionCapable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="0.10.22" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.22" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="0.10.18" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.22" />
<PackageReference Include="DotNet.Bundle" Version="0.9.13" />
</ItemGroup>
<ItemGroup>
<UpToDateCheckInput Remove="Views\MainWindow.axaml" />
</ItemGroup>
<ItemGroup>
<Compile Update="src\App.axaml.cs">
<DependentUpon>App.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
</Project>