Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -210,3 +210,6 @@ docs/api/\.manifest

# Codealike UID
codealike.json

# This is so coderush data isn't included...
.cr/
8 changes: 4 additions & 4 deletions Discord.Net.sln
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Discord.Net.V4.Rest", "src\
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Discord.Net.V4.Core", "src\Discord.Net.V4.Core\Discord.Net.V4.Core.csproj", "{3277421C-AD38-43A7-89EB-D4E1F866004E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Discord.Net.V4.Audio", "src\Discord.Net.V4.Audio\Discord.Net.V4.Audio.csproj", "{EE97E2F3-8A85-46D4-A5D6-EE985047F9F6}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Discord.Net.V4.Audio", "src\Discord.Net.V4.Audio\Discord.Net.V4.Audio.csproj", "{EE97E2F3-8A85-46D4-A5D6-EE985047F9F6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Discord.Net.Models", "src\Discord.Net.Models\Discord.Net.Models.csproj", "{2EC5A01A-91CB-4E3F-AFBD-7DDAEC61FF15}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Discord.Net.Models", "src\Discord.Net.Models\Discord.Net.Models.csproj", "{2EC5A01A-91CB-4E3F-AFBD-7DDAEC61FF15}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SourceGenerators", "SourceGenerators", "{C1C763AF-3DC5-4F7D-8551-0A65B6011305}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Discord.Net.Hanz", "sourcegen\Discord.Net.Hanz\Discord.Net.Hanz.csproj", "{595DFC73-902A-4A2B-BE33-16B627134451}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Discord.Net.Hanz", "sourcegen\Discord.Net.Hanz\Discord.Net.Hanz.csproj", "{595DFC73-902A-4A2B-BE33-16B627134451}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FeatureSamples", "samples\FeatureSamples\FeatureSamples.csproj", "{2A082FC0-B17A-4109-9B73-2B2F721F49E8}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FeatureSamples", "samples\FeatureSamples\FeatureSamples.csproj", "{2A082FC0-B17A-4109-9B73-2B2F721F49E8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
8 changes: 2 additions & 6 deletions src/Discord.Net.V4.Audio/Discord.Net.V4.Audio.csproj
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<IsAotCompatible>false</IsAotCompatible>
<RootNamespace>Discord.Audio</RootNamespace>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Discord.Net.V4.Core\Discord.Net.V4.Core.csproj" />
<ProjectReference Include="..\Discord.Net.V4.Gateway\Discord.Net.V4.Gateway.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
</ItemGroup>
Expand Down
Loading