-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAzzyBot.Bot.csproj
107 lines (95 loc) · 4.11 KB
/
AzzyBot.Bot.csproj
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>AzzyBot.Bot</RootNamespace>
<OutputType>Exe</OutputType>
<Product>AzzyBot</Product>
<StartupObject>AzzyBot.Bot.Startup</StartupObject>
<Title>AzzyBot</Title>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<AssemblyName>AzzyBot-Dev</AssemblyName>
<Product>AzzyBot-Dev</Product>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Docker'">
<AssemblyName>AzzyBot-Docker</AssemblyName>
<Product>AzzyBot-Docker</Product>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Docker-debug'">
<AssemblyName>AzzyBot-Docker-Dev</AssemblyName>
<Product>AzzyBot-Docker-Dev</Product>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<AssemblyName>AzzyBot</AssemblyName>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)'=='Release' OR '$(Configuration)'=='Docker'">
<Compile Remove="Commands\DebugCommands.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Lavalink4NET.DSharpPlus.Nightly" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NCronJob" />
<PackageReference Include="Roslynator.Analyzers">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Roslynator.CodeAnalysis.Analyzers">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Roslynator.CodeFixes">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Roslynator.Formatting.Analyzers">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Roslynator.Refactorings">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="SonarAnalyzer.CSharp">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Linq.Async" />
<PackageReference Include="TagLibSharp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AzzyBot.Core\AzzyBot.Core.csproj" />
<ProjectReference Include="..\AzzyBot.Data\AzzyBot.Data.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Resources\UriStrings.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>UriStrings.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\UriStrings.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>UriStrings.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="Modules\Core\Files\AppStats.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Modules\MusicStreaming\Files\application.yml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Settings\AzzyBotSettings-Docker.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Settings\AzzyBotSettings-Dev.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Settings\AzzyBotSettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>