-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBFGDL.NET.csproj
More file actions
69 lines (61 loc) · 2.27 KB
/
Copy pathBFGDL.NET.csproj
File metadata and controls
69 lines (61 loc) · 2.27 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
62
63
64
65
66
67
68
69
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<AssemblyName>BFGDL.NET</AssemblyName>
<RootNamespace>BFGDL.NET</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<InvariantGlobalization>true</InvariantGlobalization>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Remove="bfg-dl v4\**" />
<Compile Remove="bfg_keygen_2025.12.05\**" />
<Compile Remove="Documentation\**" />
<Compile Remove="publish\**" />
<Compile Remove="RefJS\**" />
<Compile Remove="Core\**" />
<Compile Remove="GUI\**" />
<EmbeddedResource Remove="bfg-dl v4\**" />
<EmbeddedResource Remove="bfg_keygen_2025.12.05\**" />
<EmbeddedResource Remove="Documentation\**" />
<EmbeddedResource Remove="publish\**" />
<EmbeddedResource Remove="RefJS\**" />
<EmbeddedResource Remove="Core\**" />
<EmbeddedResource Remove="GUI\**" />
<None Remove="bfg-dl v4\**" />
<None Remove="bfg_keygen_2025.12.05\**" />
<None Remove="Documentation\**" />
<None Remove="publish\**" />
<None Remove="RefJS\**" />
<None Remove="Core\**" />
<None Remove="GUI\**" />
</ItemGroup>
<ItemGroup>
<None Remove="bfg_keygen_2025.12.05.rar" />
<None Remove="download-list.txt" />
</ItemGroup>
<ItemGroup>
<None Include=".github\workflows\release.yml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Core\BFGDL.NET.Core.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="config.ini">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>