-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFloatView.csproj
More file actions
24 lines (24 loc) · 1.14 KB
/
FloatView.csproj
File metadata and controls
24 lines (24 loc) · 1.14 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<ApplicationIcon>floatview_logo.ico</ApplicationIcon>
<AssemblyTitle>FloatView</AssemblyTitle>
<AssemblyDescription>Lightweight desktop overlay application for floating browser sources</AssemblyDescription>
<AssemblyCompany>FloatView</AssemblyCompany>
<AssemblyProduct>FloatView</AssemblyProduct>
<Copyright>Copyright © 2025 Efelion - Licensed under GPL v3</Copyright>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<RepositoryUrl>https://github.com/Efelion/FloatView</RepositoryUrl>
<PackageProjectUrl>https://github.com/Efelion/FloatView</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2739.15" />
</ItemGroup>
</Project>