|
1 |
| -<Project Sdk="Microsoft.NET.Sdk"> |
2 |
| - |
3 |
| - <PropertyGroup> |
4 |
| - <RootNamespace>AzzyBot</RootNamespace> |
5 |
| - <OutputType>Exe</OutputType> |
6 |
| - <TargetFramework>net8.0</TargetFramework> |
7 |
| - <ImplicitUsings>disable</ImplicitUsings> |
8 |
| - <Nullable>enable</Nullable> |
9 |
| - <IsPublishable>True</IsPublishable> |
10 |
| - <Platforms>x64;ARM64;AnyCPU</Platforms> |
11 |
| - <PlatformTarget>AnyCPU</PlatformTarget> |
12 |
| - <EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild> |
13 |
| - <ProduceReferenceAssembly>False</ProduceReferenceAssembly> |
14 |
| - <Authors>Sella-GH, AzzyBot Contributors</Authors> |
15 |
| - <Version>1.10.0</Version> |
16 |
| - <Copyright>© 2024 - $(Authors)</Copyright> |
17 |
| - <Product>AzzyBot</Product> |
18 |
| - <Description>General purpose discord bot, written in C# and with DSharpPlus, dedicated for the use with AzuraCast.</Description> |
19 |
| - <RepositoryUrl>https://github.com/Sella-GH/AzzyBot</RepositoryUrl> |
20 |
| - <PathMap>$(MSBuildProjectDirectory)\$(IntermediateOutputPath)=.</PathMap> |
21 |
| - <AnalysisLevel>latest-all</AnalysisLevel> |
22 |
| - <Configurations>Debug;Release;Docker;Docker-debug</Configurations> |
23 |
| - <NoWarn>$(NoWarn);CA1812;CA2007</NoWarn> |
24 |
| - <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion> |
25 |
| - </PropertyGroup> |
26 |
| - |
27 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
28 |
| - <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
29 |
| - <AssemblyName>AzzyBot-Dev</AssemblyName> |
30 |
| - <Product>AzzyBot-Dev</Product> |
31 |
| - </PropertyGroup> |
32 |
| - |
33 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'"> |
34 |
| - <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
35 |
| - <AssemblyName>AzzyBot-Dev</AssemblyName> |
36 |
| - <Product>AzzyBot-Dev</Product> |
37 |
| - </PropertyGroup> |
38 |
| - |
39 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
40 |
| - <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
41 |
| - <AssemblyName>AzzyBot-Dev</AssemblyName> |
42 |
| - <Product>AzzyBot-Dev</Product> |
43 |
| - </PropertyGroup> |
44 |
| - |
45 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker|AnyCPU'"> |
46 |
| - <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
47 |
| - <AssemblyName>AzzyBot-Docker</AssemblyName> |
48 |
| - <Product>AzzyBot-Docker</Product> |
49 |
| - </PropertyGroup> |
50 |
| - |
51 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker|ARM64'"> |
52 |
| - <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
53 |
| - <AssemblyName>AzzyBot-Docker</AssemblyName> |
54 |
| - <Product>AzzyBot-Docker</Product> |
55 |
| - </PropertyGroup> |
56 |
| - |
57 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker|x64'"> |
58 |
| - <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
59 |
| - <AssemblyName>AzzyBot-Docker</AssemblyName> |
60 |
| - <Product>AzzyBot-Docker</Product> |
61 |
| - </PropertyGroup> |
62 |
| - |
63 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker-debug|AnyCPU'"> |
64 |
| - <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
65 |
| - <AssemblyName>AzzyBot-Dev</AssemblyName> |
66 |
| - <Product>AzzyBot-Dev</Product> |
67 |
| - </PropertyGroup> |
68 |
| - |
69 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker-debug|ARM64'"> |
70 |
| - <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
71 |
| - <AssemblyName>AzzyBot-Dev</AssemblyName> |
72 |
| - <Product>AzzyBot-Dev</Product> |
73 |
| - </PropertyGroup> |
74 |
| - |
75 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker-debug|x64'"> |
76 |
| - <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
77 |
| - <AssemblyName>AzzyBot-Dev</AssemblyName> |
78 |
| - <Product>AzzyBot-Dev</Product> |
79 |
| - </PropertyGroup> |
80 |
| - |
81 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
82 |
| - <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
83 |
| - <AssemblyName>AzzyBot</AssemblyName> |
84 |
| - </PropertyGroup> |
85 |
| - |
86 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'"> |
87 |
| - <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
88 |
| - <AssemblyName>AzzyBot</AssemblyName> |
89 |
| - </PropertyGroup> |
90 |
| - |
91 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
92 |
| - <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
93 |
| - <AssemblyName>AzzyBot</AssemblyName> |
94 |
| - </PropertyGroup> |
95 |
| - |
96 |
| - <ItemGroup> |
97 |
| - <PackageReference Include="CsvHelper" Version="33.0.1" /> |
98 |
| - <PackageReference Include="DSharpPlus" Version="4.4.9" /> |
99 |
| - <PackageReference Include="DSharpPlus.Interactivity" Version="4.4.9" /> |
100 |
| - <PackageReference Include="DSharpPlus.SlashCommands" Version="4.4.9" /> |
101 |
| - <PackageReference Include="Lavalink4NET.DSharpPlus" Version="4.0.18" /> |
102 |
| - <PackageReference Include="Lavalink4NET.InactivityTracking" Version="4.0.18" /> |
103 |
| - <PackageReference Include="Lavalink4NET.Integrations.LyricsJava" Version="4.0.18" /> |
104 |
| - <PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" /> |
105 |
| - <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" /> |
106 |
| - <PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" /> |
107 |
| - <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" /> |
108 |
| - <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
109 |
| - <PackageReference Include="Roslynator.Analyzers" Version="4.12.4"> |
110 |
| - <PrivateAssets>all</PrivateAssets> |
111 |
| - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
112 |
| - </PackageReference> |
113 |
| - <PackageReference Include="Roslynator.CodeAnalysis.Analyzers" Version="4.12.4"> |
114 |
| - <PrivateAssets>all</PrivateAssets> |
115 |
| - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
116 |
| - </PackageReference> |
117 |
| - <PackageReference Include="Roslynator.CodeFixes" Version="4.12.4"> |
118 |
| - <PrivateAssets>all</PrivateAssets> |
119 |
| - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
120 |
| - </PackageReference> |
121 |
| - <PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.12.4"> |
122 |
| - <PrivateAssets>all</PrivateAssets> |
123 |
| - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
124 |
| - </PackageReference> |
125 |
| - <PackageReference Include="Roslynator.Refactorings" Version="4.12.4"> |
126 |
| - <PrivateAssets>all</PrivateAssets> |
127 |
| - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
128 |
| - </PackageReference> |
129 |
| - <PackageReference Include="System.Net.Security" Version="4.3.2" /> |
130 |
| - </ItemGroup> |
131 |
| - |
132 |
| - <ItemGroup> |
133 |
| - <None Update="Modules\Core\Files\AzzyBot.json"> |
134 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
135 |
| - </None> |
136 |
| - <None Update="Settings\appsettings.development.json"> |
137 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
138 |
| - </None> |
139 |
| - <None Update="Settings\appsettings.json"> |
140 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
141 |
| - </None> |
142 |
| - <None Update="Customization\ClubManagement\ClubBotStatus.json"> |
143 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
144 |
| - </None> |
145 |
| - <None Update="Customization\AzuraCast\FavoriteSongs.json"> |
146 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
147 |
| - </None> |
148 |
| - <None Update="Customization\AzuraCast\PlaylistSlogans.json"> |
149 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
150 |
| - </None> |
151 |
| - <None Update="Customization\AzuraCast\StringsAzuraCast.json"> |
152 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
153 |
| - </None> |
154 |
| - <None Update="Customization\ClubManagement\StringsClubManagement.json"> |
155 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
156 |
| - </None> |
157 |
| - <None Update="Customization\Core\StringsCore.json"> |
158 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
159 |
| - </None> |
160 |
| - <None Update="Customization\MusicStreaming\StringsMusicStreaming.json"> |
161 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
162 |
| - </None> |
163 |
| - <None Update="Modules\AzuraCast\Files\FileCache.json"> |
164 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
165 |
| - </None> |
166 |
| - <None Update="Modules\MusicStreaming\Files\application.yml"> |
167 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
168 |
| - </None> |
169 |
| - </ItemGroup> |
170 |
| - |
171 |
| - <ItemGroup> |
172 |
| - <Folder Include="Customization\MusicStreaming\" /> |
173 |
| - </ItemGroup> |
174 |
| -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <RootNamespace>AzzyBot</RootNamespace> |
| 5 | + <OutputType>Exe</OutputType> |
| 6 | + <TargetFramework>net8.0</TargetFramework> |
| 7 | + <ImplicitUsings>disable</ImplicitUsings> |
| 8 | + <Nullable>enable</Nullable> |
| 9 | + <IsPublishable>True</IsPublishable> |
| 10 | + <Platforms>x64;ARM64;AnyCPU</Platforms> |
| 11 | + <PlatformTarget>AnyCPU</PlatformTarget> |
| 12 | + <EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild> |
| 13 | + <ProduceReferenceAssembly>False</ProduceReferenceAssembly> |
| 14 | + <Authors>Sella-GH, AzzyBot Contributors</Authors> |
| 15 | + <Version>1.10.0</Version> |
| 16 | + <Copyright>© 2024 - $(Authors)</Copyright> |
| 17 | + <Product>AzzyBot</Product> |
| 18 | + <Description>General purpose discord bot, written in C# and with DSharpPlus, dedicated for the use with AzuraCast.</Description> |
| 19 | + <RepositoryUrl>https://github.com/Sella-GH/AzzyBot</RepositoryUrl> |
| 20 | + <PathMap>$(MSBuildProjectDirectory)\$(IntermediateOutputPath)=.</PathMap> |
| 21 | + <AnalysisLevel>latest-all</AnalysisLevel> |
| 22 | + <Configurations>Debug;Release;Docker;Docker-debug</Configurations> |
| 23 | + <NoWarn>$(NoWarn);CA1812;CA2007</NoWarn> |
| 24 | + <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion> |
| 25 | + </PropertyGroup> |
| 26 | + |
| 27 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 28 | + <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
| 29 | + <AssemblyName>AzzyBot-Dev</AssemblyName> |
| 30 | + <Product>AzzyBot-Dev</Product> |
| 31 | + </PropertyGroup> |
| 32 | + |
| 33 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'"> |
| 34 | + <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
| 35 | + <AssemblyName>AzzyBot-Dev</AssemblyName> |
| 36 | + <Product>AzzyBot-Dev</Product> |
| 37 | + </PropertyGroup> |
| 38 | + |
| 39 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
| 40 | + <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
| 41 | + <AssemblyName>AzzyBot-Dev</AssemblyName> |
| 42 | + <Product>AzzyBot-Dev</Product> |
| 43 | + </PropertyGroup> |
| 44 | + |
| 45 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker|AnyCPU'"> |
| 46 | + <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
| 47 | + <AssemblyName>AzzyBot-Docker</AssemblyName> |
| 48 | + <Product>AzzyBot-Docker</Product> |
| 49 | + </PropertyGroup> |
| 50 | + |
| 51 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker|ARM64'"> |
| 52 | + <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
| 53 | + <AssemblyName>AzzyBot-Docker</AssemblyName> |
| 54 | + <Product>AzzyBot-Docker</Product> |
| 55 | + </PropertyGroup> |
| 56 | + |
| 57 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker|x64'"> |
| 58 | + <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
| 59 | + <AssemblyName>AzzyBot-Docker</AssemblyName> |
| 60 | + <Product>AzzyBot-Docker</Product> |
| 61 | + </PropertyGroup> |
| 62 | + |
| 63 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker-debug|AnyCPU'"> |
| 64 | + <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
| 65 | + <AssemblyName>AzzyBot-Dev</AssemblyName> |
| 66 | + <Product>AzzyBot-Dev</Product> |
| 67 | + </PropertyGroup> |
| 68 | + |
| 69 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker-debug|ARM64'"> |
| 70 | + <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
| 71 | + <AssemblyName>AzzyBot-Dev</AssemblyName> |
| 72 | + <Product>AzzyBot-Dev</Product> |
| 73 | + </PropertyGroup> |
| 74 | + |
| 75 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker-debug|x64'"> |
| 76 | + <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
| 77 | + <AssemblyName>AzzyBot-Dev</AssemblyName> |
| 78 | + <Product>AzzyBot-Dev</Product> |
| 79 | + </PropertyGroup> |
| 80 | + |
| 81 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 82 | + <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
| 83 | + <AssemblyName>AzzyBot</AssemblyName> |
| 84 | + </PropertyGroup> |
| 85 | + |
| 86 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'"> |
| 87 | + <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
| 88 | + <AssemblyName>AzzyBot</AssemblyName> |
| 89 | + </PropertyGroup> |
| 90 | + |
| 91 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
| 92 | + <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
| 93 | + <AssemblyName>AzzyBot</AssemblyName> |
| 94 | + </PropertyGroup> |
| 95 | + |
| 96 | + <ItemGroup> |
| 97 | + <PackageReference Include="CsvHelper" Version="33.0.1" /> |
| 98 | + <PackageReference Include="DSharpPlus" Version="4.4.9" /> |
| 99 | + <PackageReference Include="DSharpPlus.Interactivity" Version="4.4.9" /> |
| 100 | + <PackageReference Include="DSharpPlus.SlashCommands" Version="4.4.9" /> |
| 101 | + <PackageReference Include="Lavalink4NET.DSharpPlus" Version="4.0.18" /> |
| 102 | + <PackageReference Include="Lavalink4NET.InactivityTracking" Version="4.0.18" /> |
| 103 | + <PackageReference Include="Lavalink4NET.Integrations.LyricsJava" Version="4.0.18" /> |
| 104 | + <PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" /> |
| 105 | + <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" /> |
| 106 | + <PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" /> |
| 107 | + <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" /> |
| 108 | + <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
| 109 | + <PackageReference Include="Roslynator.Analyzers" Version="4.12.4"> |
| 110 | + <PrivateAssets>all</PrivateAssets> |
| 111 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 112 | + </PackageReference> |
| 113 | + <PackageReference Include="Roslynator.CodeAnalysis.Analyzers" Version="4.12.4"> |
| 114 | + <PrivateAssets>all</PrivateAssets> |
| 115 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 116 | + </PackageReference> |
| 117 | + <PackageReference Include="Roslynator.CodeFixes" Version="4.12.4"> |
| 118 | + <PrivateAssets>all</PrivateAssets> |
| 119 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 120 | + </PackageReference> |
| 121 | + <PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.12.4"> |
| 122 | + <PrivateAssets>all</PrivateAssets> |
| 123 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 124 | + </PackageReference> |
| 125 | + <PackageReference Include="Roslynator.Refactorings" Version="4.12.4"> |
| 126 | + <PrivateAssets>all</PrivateAssets> |
| 127 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 128 | + </PackageReference> |
| 129 | + <PackageReference Include="System.Net.Security" Version="4.3.2" /> |
| 130 | + </ItemGroup> |
| 131 | + |
| 132 | + <ItemGroup> |
| 133 | + <None Update="Modules\Core\Files\AzzyBot.json"> |
| 134 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 135 | + </None> |
| 136 | + <None Update="Settings\appsettings.development.json"> |
| 137 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 138 | + </None> |
| 139 | + <None Update="Settings\appsettings.json"> |
| 140 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 141 | + </None> |
| 142 | + <None Update="Customization\ClubManagement\ClubBotStatus.json"> |
| 143 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 144 | + </None> |
| 145 | + <None Update="Customization\AzuraCast\FavoriteSongs.json"> |
| 146 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 147 | + </None> |
| 148 | + <None Update="Customization\AzuraCast\PlaylistSlogans.json"> |
| 149 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 150 | + </None> |
| 151 | + <None Update="Customization\AzuraCast\StringsAzuraCast.json"> |
| 152 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 153 | + </None> |
| 154 | + <None Update="Customization\ClubManagement\StringsClubManagement.json"> |
| 155 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 156 | + </None> |
| 157 | + <None Update="Customization\Core\StringsCore.json"> |
| 158 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 159 | + </None> |
| 160 | + <None Update="Customization\MusicStreaming\StringsMusicStreaming.json"> |
| 161 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 162 | + </None> |
| 163 | + <None Update="Modules\AzuraCast\Files\FileCache.json"> |
| 164 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 165 | + </None> |
| 166 | + <None Update="Modules\MusicStreaming\Files\application.yml"> |
| 167 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 168 | + </None> |
| 169 | + </ItemGroup> |
| 170 | + |
| 171 | + <ItemGroup> |
| 172 | + <Folder Include="Customization\MusicStreaming\" /> |
| 173 | + </ItemGroup> |
| 174 | +</Project> |
0 commit comments