-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp_channel_mirror.csproj
35 lines (27 loc) · 1.11 KB
/
help_channel_mirror.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained> <!-- If true, includes the runtime -->
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<DebugType>none</DebugType>
<PublishDir>publish</PublishDir>
</PropertyGroup>
<ItemGroup>
<Content Include="bot.cfg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Include="secrets/*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<PackageReference Include="Discord.Net" Version="3.16.0" />
<PackageReference Include="Octokit" Version="14.0.0" />
</ItemGroup>
<Target Name="CreateCustomFolder" AfterTargets="Build">
<MakeDir Directories="$(OutDir)/secrets" />
</Target>
</Project>