Skip to content

Commit

Permalink
Start on updating deps
Browse files Browse the repository at this point in the history
  • Loading branch information
OoLunar committed Dec 10, 2024
1 parent 17687b2 commit b715cdd
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 16 deletions.
3 changes: 1 addition & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Nullable>enable</Nullable>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<TargetFrameworks>net8.0</TargetFrameworks>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IsPackable>false</IsPackable>
Expand All @@ -22,6 +21,6 @@
<RepositoryUrl>https://github.com/OoLunar/DSharpPlus.VoiceLink</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="$(ProjectRoot)/res/*.png" Pack="true" PackagePath=""/>
<EmbeddedResource Include="$(ProjectRoot)/res/*.png" Pack="true" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion examples/HelloWorld/HelloWorld.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
Expand Down
2 changes: 1 addition & 1 deletion libs/DSharpPlus
Submodule DSharpPlus updated 400 files
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>netstandard2.0</TargetFramework>
<Nullable>disable</Nullable>
<PackageId>OoLunar.DSharpPlus.VoiceLink.Natives.Opus</PackageId>
<Description>Provides the dynamic library files for Opus.</Description>
<PackageTags>discord, discord-bot, discord-api, dsharpplus, discord-voice, dsharpplus-voicenext</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>netstandard2.0</TargetFramework>
<Nullable>disable</Nullable>
<PackageId>OoLunar.DSharpPlus.VoiceLink.Natives.Sodium</PackageId>
<Description>Provides the dynamic library files for Sodium.</Description>
<PackageTags>discord, discord-bot, discord-api, dsharpplus, discord-voice, dsharpplus-voicenext</PackageTags>
Expand Down
20 changes: 10 additions & 10 deletions src/DSharpPlus.VoiceLink/DSharpPlus.VoiceLink.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
Expand All @@ -13,15 +13,15 @@
<IsPackable>true</IsPackable>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="$(ProjectRoot)/LICENSE" Pack="true" PackagePath=""/>
<EmbeddedResource Include="$(ProjectRoot)/README.md" Pack="true" PackagePath=""/>
<EmbeddedResource Include="$(ProjectRoot)/LICENSE" Pack="true" PackagePath="" />
<EmbeddedResource Include="$(ProjectRoot)/README.md" Pack="true" PackagePath="" />
<ProjectReference Include="$(ProjectRoot)/libs/DSharpPlus/DSharpPlus/DSharpPlus.csproj" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="System.IO.Pipelines" Version="8.0.0" />
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="Serilog.Enrichers.Thread" Version="3.1.0" />
<PackageReference Include="Serilog.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
<PackageReference Include="System.IO.Pipelines" Version="9.0.0" />
<PackageReference Include="Serilog" Version="4.2.0" />
<PackageReference Include="Serilog.Enrichers.Thread" Version="4.0.0" />
<PackageReference Include="Serilog.Extensions.Hosting" Version="9.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
</ItemGroup>
</Project>

0 comments on commit b715cdd

Please sign in to comment.