-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCutCode.CrossPlatform.csproj
More file actions
61 lines (61 loc) · 2.79 KB
/
CutCode.CrossPlatform.csproj
File metadata and controls
61 lines (61 loc) · 2.79 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<PublishTrimmed>True</PublishTrimmed>
<PublishReadyToRun>True</PublishReadyToRun>
<Company>CutCode</Company>
<Product>CutCode</Product>
<AssemblyVersion>3.0.0</AssemblyVersion>
<FileVersion>3.0.0</FileVersion>
<NeutralLanguage>en-001</NeutralLanguage>
<StartupObject>CutCode.CrossPlatform.Program</StartupObject>
<ApplicationIcon>Assets\Images\logo.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<CFBundleName>CutCode</CFBundleName> <!-- Also defines .app file name -->
<CFBundleDisplayName>CutCode</CFBundleDisplayName>
<CFBundleIdentifier>com.cutcode</CFBundleIdentifier>
<CFBundleVersion>3.0.0</CFBundleVersion>
<CFBundleShortVersionString>3.0.0</CFBundleShortVersionString>
<CFBundlePackageType>AAPL</CFBundlePackageType>
<CFBundleSignature>????</CFBundleSignature>
<CFBundleExecutable>CutCode.CrossPlatform</CFBundleExecutable>
<CFBundleIconFile>/Assets/logo.icns</CFBundleIconFile> <!-- Will be copied from output directory -->
<NSPrincipalClass>NSApplication</NSPrincipalClass>
<NSHighResolutionCapable>true</NSHighResolutionCapable>
</PropertyGroup>
<ItemGroup>
<Folder Include="DataBase" />
<Folder Include="Models\" />
<Folder Include="Controllers\" />
<AvaloniaResource Include="Assets\**" />
<AvaloniaResource Include="Assets\Images\Icons\**" />
<None Remove=".gitignore" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\Images\logo.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Aura.UI" Version="0.1.5-dev-04" />
<PackageReference Include="Avalonia" Version="0.10.999-cibuild0017745-beta" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.999-cibuild0017745-beta" />
<!--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.999-cibuild0017745-beta" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.999-cibuild0017745-beta" />
<PackageReference Include="DotNet.Bundle" Version="0.9.13" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AvaloniaEdit\AvaloniaEdit.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Views\NotificationView.axaml.cs">
<DependentUpon>NotificationView.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
</Project>