-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThetaFTP.csproj
More file actions
56 lines (46 loc) · 2.04 KB
/
ThetaFTP.csproj
File metadata and controls
56 lines (46 loc) · 2.04 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Content Remove="aes_key.json" />
<Content Remove="certificate_generation.json" />
<Content Remove="server_settings.json" />
<Content Remove="encryption_key_generation_file.json" />
<Content Remove="appsettings.json" />
<Content Remove="appsettings.Development.json" />
</ItemGroup>
<ItemGroup>
<None Include="Google Cloud Secrets Setup.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="firebase_database_rules.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="DatabaseConfig.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="LICENSE.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="BouncyCastle.Cryptography" Version="2.5.1" />
<PackageReference Include="FirebaseAuthentication.net" Version="4.1.0" />
<PackageReference Include="FirebaseDatabase.net" Version="4.2.0" />
<PackageReference Include="Google.Apis.Auth" Version="1.69.0" />
<PackageReference Include="Google.Cloud.SecretManager.V1" Version="2.5.0" />
<PackageReference Include="LiteDB" Version="5.0.21" />
<PackageReference Include="MailKit" Version="4.11.0" />
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
<PackageReference Include="MimeKit" Version="4.11.0" />
<PackageReference Include="MySql.Data" Version="9.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="QueryParser" Version="1.0.8" />
<PackageReference Include="Serilog" Version="4.2.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
<PackageReference Include="System.Text.Json" Version="9.0.3" />
</ItemGroup>
</Project>