-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDisCatSharp.Extensions.OAuth2Web.csproj
More file actions
62 lines (53 loc) · 2.82 KB
/
Copy pathDisCatSharp.Extensions.OAuth2Web.csproj
File metadata and controls
62 lines (53 loc) · 2.82 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<Import Project="../Targets/Version.targets" />
<Import Project="../Targets/DisCatSharp.targets" />
<Import Project="../Targets/Package.targets" />
<Import Project="../Targets/NuGet.targets" />
<Import Project="../Targets/Library.targets" />
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'">
<TypeScriptTarget>ESNext</TypeScriptTarget>
</PropertyGroup>
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0|AnyCPU'">
<TypeScriptTarget>ESNext</TypeScriptTarget>
</PropertyGroup>
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0|AnyCPU'">
<TypeScriptTarget>ESNext</TypeScriptTarget>
</PropertyGroup>
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net7.0|AnyCPU'">
<TypeScriptTarget>ESNext</TypeScriptTarget>
</PropertyGroup>
<PropertyGroup>
<AssemblyName>DisCatSharp.Extensions.OAuth2Web</AssemblyName>
<RootNamespace>DisCatSharp.Extensions.OAuth2Web</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<PackageId>DisCatSharp.Extensions.OAuth2Web</PackageId>
<Description>
DisCatSharp.Extensions.OAuth2Web
Extension providing a web server for the DiscordOAuth2Client.
</Description>
<PackageTags>DisCatSharp,DisCatSharp Extension,OAuth2,OAuth,Discord OAuth2,Discord,Bots,Discord Bots,AITSYS,Net8,Net9,Net10,Webserver</PackageTags>
<TypeScriptJSXEmit>none</TypeScriptJSXEmit>
<TypeScriptModuleKind>none</TypeScriptModuleKind>
</PropertyGroup>
<ItemGroup Condition="!$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net9.0'))">
<PackageReference Include="Backport.System.Threading.Lock" Version="3.1.6" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ConcurrentHashSet" Version="1.3.0" />
<PackageReference Include="DisCatSharp" Version="[10.7.0-nightly-068,)" />
<PackageReference Include="DisCatSharp.Analyzer" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="DisCatSharp.Attributes" Version="2025.3.27" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.2" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="10.0.2" />
<PackageReference Include="System.Memory" Version="4.6.3" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.102" />
</ItemGroup>
</Project>