-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathKick.bot.csproj
71 lines (60 loc) · 2.01 KB
/
Kick.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net4.7.2</TargetFramework>
<Platforms>AnyCPU;x64</Platforms>
<Version>0.6.0.0</Version>
<Authors>Sehelitar</Authors>
<Description>Kick Streaming integration for Streamer.bot</Description>
<Copyright>Sehelitar ©2023</Copyright>
<PackageLicenseExpression>AGPL-3.0-only</PackageLicenseExpression>
<Title>Kick.bot</Title>
<AssemblyName>Kick.bot</AssemblyName>
<RootNamespace>Kick.Bot</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Remove="KickAPI\**" />
<Compile Remove="Properties\**" />
<EmbeddedResource Remove="KickAPI\**" />
<EmbeddedResource Remove="Properties\**" />
<None Remove="KickAPI\**" />
<None Remove="Properties\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="BotConfig.cs" />
<Compile Remove="BotEventSimulation.cs" />
<Compile Remove="SBActions.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="BotConfig.resx" />
</ItemGroup>
<ItemGroup>
<CodeAnalysisDictionary Include="SBActions.cs" />
</ItemGroup>
<ItemGroup>
<None Include="BotConfig.cs" />
<None Include="BotConfig.resx" />
<None Include="BotEventSimulation.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="LiteDB" Version="5.0.20" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="KickAPI\Kick.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.Toolkit.Uwp.Notifications">
<HintPath>..\Streamer.bot-x64-DEV\Microsoft.Toolkit.Uwp.Notifications.dll</HintPath>
</Reference>
<Reference Include="Streamer.bot.Plugin.Interface">
<HintPath>..\Streamer.bot-x64-DEV\Streamer.bot.Plugin.Interface.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="actions.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="LICENSE.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>