-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhasheous-lib.csproj
More file actions
47 lines (45 loc) · 2.43 KB
/
hasheous-lib.csproj
File metadata and controls
47 lines (45 loc) · 2.43 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>hasheous_lib</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Debug\net8.0\hasheous-lib.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\net8.0\hasheous-lib.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="gaseous-signature-parser" Version="2.5.0" />
<PackageReference Include="gaseous.IGDB" Version="1.0.5" />
<PackageReference Include="hasheous-client" Version="1.4.6" />
<PackageReference Include="HtmlAgilityPack" Version="1.12.4" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="8.0.24" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" Version="8.0.24" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.24" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning" Version="5.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer" Version="5.1.0" />
<PackageReference Include="StackExchange.Redis" Version="2.11.8" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="[9.0.6]" />
<PackageReference Include="MySqlConnector" Version="2.5.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.24" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.24" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.3" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="9.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>
<ItemGroup>
<None Remove="Support\" />
<None Remove="Support\*.txt" />
<None Remove="Schema\" />
<None Remove="Schema\hasheous-*.sql" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Build" Version="17.11.48" />
<EmbeddedResource Include="Support\*.txt" />
<EmbeddedResource Include="Schema\hasheous-*.sql" />
</ItemGroup>
</Project>