-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathClipSyncWindows.csproj
More file actions
47 lines (39 loc) · 1.55 KB
/
ClipSyncWindows.csproj
File metadata and controls
47 lines (39 loc) · 1.55 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ApplicationIcon>Assets/app.ico</ApplicationIcon>
<!-- Version Information -->
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<FileVersion>1.2.0.0</FileVersion>
<Version>1.2.0</Version>
<!-- Assembly Metadata -->
<AssemblyTitle>ClipSync Windows</AssemblyTitle>
<AssemblyDescription>Cross-platform clipboard sharing application for Windows and Android
devices via Bluetooth</AssemblyDescription>
<AssemblyCompany>ClipSync</AssemblyCompany>
<AssemblyProduct>ClipSync Windows</AssemblyProduct>
<AssemblyCopyright>Copyright 2025 ClipSync. All rights reserved.</AssemblyCopyright>
<AssemblyTrademark>ClipSync</AssemblyTrademark>
<!-- Application Properties -->
<ApplicationManifest>app.manifest</ApplicationManifest>
<Win32Resource />
<StartupObject />
<!-- Build Configuration -->
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<Deterministic>true</Deterministic>
<PathMap>$(MSBuildProjectDirectory)=C:\</PathMap>
</PropertyGroup>
<ItemGroup>
<Content Include="Assets\app.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="InTheHand.Net.Bluetooth" Version="4.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
</Project>