This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathProSwapperLobby.csproj
51 lines (44 loc) · 1.65 KB
/
ProSwapperLobby.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>disable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<PlatformTarget>x64</PlatformTarget>
<AssemblyVersion>2.0.3.0</AssemblyVersion>
<FileVersion>2.0.3.0</FileVersion>
<Description>The BEST Fortnite lobby swapper</Description>
<Copyright>Pro Swapper 2022</Copyright>
<PackageProjectUrl>http://proswapper.xyz</PackageProjectUrl>
<OutputType>Exe</OutputType>
<BaseOutputPath>bin\</BaseOutputPath>
<StartupObject>Program</StartupObject>
<ApplicationIcon>ProSwapperLobby.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Compile Remove="bin\**" />
<Content Remove="bin\**" />
<EmbeddedResource Remove="bin\**" />
<None Remove="bin\**" />
</ItemGroup>
<ItemGroup>
<Content Remove="LobbyAPI.json" />
</ItemGroup>
<ItemGroup>
<Content Include="ProSwapperLobby.ico" />
</ItemGroup>
<ItemGroup>
<None Include="LobbyAPI.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Blazored.Toast" Version="3.2.2" />
<PackageReference Include="DiscordRichPresence" Version="1.0.175" />
<PackageReference Include="DotNetZip" Version="1.16.0" />
<PackageReference Include="K4os.Compression.LZ4.Streams" Version="1.2.16" />
<PackageReference Include="LZMA-SDK" Version="19.0.0" />
<PackageReference Include="MessagePack" Version="2.3.85" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Serilog" Version="2.10.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
</ItemGroup>
</Project>