-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into AddAzuraCast
- Loading branch information
Showing
1 changed file
with
174 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,174 +1,174 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<RootNamespace>AzzyBot</RootNamespace> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>disable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<IsPublishable>True</IsPublishable> | ||
<Platforms>x64;ARM64;AnyCPU</Platforms> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild> | ||
<ProduceReferenceAssembly>False</ProduceReferenceAssembly> | ||
<Authors>Sella-GH, AzzyBot Contributors</Authors> | ||
<Version>1.10.0</Version> | ||
<Copyright>© 2024 - $(Authors)</Copyright> | ||
<Product>AzzyBot</Product> | ||
<Description>General purpose discord bot, written in C# and with DSharpPlus, dedicated for the use with AzuraCast.</Description> | ||
<RepositoryUrl>https://github.com/Sella-GH/AzzyBot</RepositoryUrl> | ||
<PathMap>$(MSBuildProjectDirectory)\$(IntermediateOutputPath)=.</PathMap> | ||
<AnalysisLevel>latest-all</AnalysisLevel> | ||
<Configurations>Debug;Release;Docker;Docker-debug</Configurations> | ||
<NoWarn>$(NoWarn);CA1812;CA2007</NoWarn> | ||
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Dev</AssemblyName> | ||
<Product>AzzyBot-Dev</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Dev</AssemblyName> | ||
<Product>AzzyBot-Dev</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Dev</AssemblyName> | ||
<Product>AzzyBot-Dev</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker|AnyCPU'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Docker</AssemblyName> | ||
<Product>AzzyBot-Docker</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker|ARM64'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Docker</AssemblyName> | ||
<Product>AzzyBot-Docker</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker|x64'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Docker</AssemblyName> | ||
<Product>AzzyBot-Docker</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker-debug|AnyCPU'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Dev</AssemblyName> | ||
<Product>AzzyBot-Dev</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker-debug|ARM64'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Dev</AssemblyName> | ||
<Product>AzzyBot-Dev</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker-debug|x64'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Dev</AssemblyName> | ||
<Product>AzzyBot-Dev</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot</AssemblyName> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot</AssemblyName> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot</AssemblyName> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="CsvHelper" Version="33.0.1" /> | ||
<PackageReference Include="DSharpPlus" Version="4.4.7" /> | ||
<PackageReference Include="DSharpPlus.Interactivity" Version="4.4.7" /> | ||
<PackageReference Include="DSharpPlus.SlashCommands" Version="4.4.7" /> | ||
<PackageReference Include="Lavalink4NET.DSharpPlus" Version="4.0.18" /> | ||
<PackageReference Include="Lavalink4NET.InactivityTracking" Version="4.0.18" /> | ||
<PackageReference Include="Lavalink4NET.Integrations.LyricsJava" Version="4.0.18" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
<PackageReference Include="Roslynator.Analyzers" Version="4.12.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Roslynator.CodeAnalysis.Analyzers" Version="4.12.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Roslynator.CodeFixes" Version="4.12.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.12.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Roslynator.Refactorings" Version="4.12.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="System.Net.Security" Version="4.3.2" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Update="Modules\Core\Files\AzzyBot.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Settings\appsettings.development.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Settings\appsettings.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Customization\ClubManagement\ClubBotStatus.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Customization\AzuraCast\FavoriteSongs.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Customization\AzuraCast\PlaylistSlogans.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Customization\AzuraCast\StringsAzuraCast.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Customization\ClubManagement\StringsClubManagement.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Customization\Core\StringsCore.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Customization\MusicStreaming\StringsMusicStreaming.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Modules\AzuraCast\Files\FileCache.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Modules\MusicStreaming\Files\application.yml"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Folder Include="Customization\MusicStreaming\" /> | ||
</ItemGroup> | ||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<RootNamespace>AzzyBot</RootNamespace> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>disable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<IsPublishable>True</IsPublishable> | ||
<Platforms>x64;ARM64;AnyCPU</Platforms> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild> | ||
<ProduceReferenceAssembly>False</ProduceReferenceAssembly> | ||
<Authors>Sella-GH, AzzyBot Contributors</Authors> | ||
<Version>1.10.0</Version> | ||
<Copyright>© 2024 - $(Authors)</Copyright> | ||
<Product>AzzyBot</Product> | ||
<Description>General purpose discord bot, written in C# and with DSharpPlus, dedicated for the use with AzuraCast.</Description> | ||
<RepositoryUrl>https://github.com/Sella-GH/AzzyBot</RepositoryUrl> | ||
<PathMap>$(MSBuildProjectDirectory)\$(IntermediateOutputPath)=.</PathMap> | ||
<AnalysisLevel>latest-all</AnalysisLevel> | ||
<Configurations>Debug;Release;Docker;Docker-debug</Configurations> | ||
<NoWarn>$(NoWarn);CA1812;CA2007</NoWarn> | ||
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Dev</AssemblyName> | ||
<Product>AzzyBot-Dev</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Dev</AssemblyName> | ||
<Product>AzzyBot-Dev</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Dev</AssemblyName> | ||
<Product>AzzyBot-Dev</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker|AnyCPU'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Docker</AssemblyName> | ||
<Product>AzzyBot-Docker</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker|ARM64'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Docker</AssemblyName> | ||
<Product>AzzyBot-Docker</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker|x64'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Docker</AssemblyName> | ||
<Product>AzzyBot-Docker</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker-debug|AnyCPU'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Dev</AssemblyName> | ||
<Product>AzzyBot-Dev</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker-debug|ARM64'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Dev</AssemblyName> | ||
<Product>AzzyBot-Dev</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker-debug|x64'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot-Dev</AssemblyName> | ||
<Product>AzzyBot-Dev</Product> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot</AssemblyName> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot</AssemblyName> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
<AssemblyName>AzzyBot</AssemblyName> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="CsvHelper" Version="33.0.1" /> | ||
<PackageReference Include="DSharpPlus" Version="4.4.9" /> | ||
<PackageReference Include="DSharpPlus.Interactivity" Version="4.4.9" /> | ||
<PackageReference Include="DSharpPlus.SlashCommands" Version="4.4.9" /> | ||
<PackageReference Include="Lavalink4NET.DSharpPlus" Version="4.0.18" /> | ||
<PackageReference Include="Lavalink4NET.InactivityTracking" Version="4.0.18" /> | ||
<PackageReference Include="Lavalink4NET.Integrations.LyricsJava" Version="4.0.18" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
<PackageReference Include="Roslynator.Analyzers" Version="4.12.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Roslynator.CodeAnalysis.Analyzers" Version="4.12.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Roslynator.CodeFixes" Version="4.12.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.12.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Roslynator.Refactorings" Version="4.12.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="System.Net.Security" Version="4.3.2" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Update="Modules\Core\Files\AzzyBot.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Settings\appsettings.development.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Settings\appsettings.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Customization\ClubManagement\ClubBotStatus.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Customization\AzuraCast\FavoriteSongs.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Customization\AzuraCast\PlaylistSlogans.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Customization\AzuraCast\StringsAzuraCast.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Customization\ClubManagement\StringsClubManagement.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Customization\Core\StringsCore.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Customization\MusicStreaming\StringsMusicStreaming.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Modules\AzuraCast\Files\FileCache.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="Modules\MusicStreaming\Files\application.yml"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Folder Include="Customization\MusicStreaming\" /> | ||
</ItemGroup> | ||
</Project> |