-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFish.Tools.csproj
More file actions
23 lines (23 loc) · 842 Bytes
/
Copy pathFish.Tools.csproj
File metadata and controls
23 lines (23 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>bin/Fish Tools</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Libs\FishConsole.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="Fish.Console">
<HintPath>Libs\Fish.Console.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="MegaApiClient" Version="1.10.5" />
<PackageReference Include="SteamKit2" Version="3.4.0" />
</ItemGroup>
</Project>