-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathKick.bot.csproj
More file actions
92 lines (80 loc) · 2.89 KB
/
Kick.bot.csproj
File metadata and controls
92 lines (80 loc) · 2.89 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net4.8.1</TargetFramework>
<Platforms>AnyCPU;x64</Platforms>
<Version>1.1.0.1</Version>
<Authors>Sehelitar</Authors>
<Description>Kick Streaming integration for Streamer.bot</Description>
<Copyright>Sehelitar ©2023-2025</Copyright>
<PackageLicenseExpression>AGPL-3.0-only</PackageLicenseExpression>
<Title>Kick.bot</Title>
<AssemblyName>Kick.bot</AssemblyName>
<RootNamespace>Kick</RootNamespace>
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Properties\**" />
<EmbeddedResource Remove="Properties\**" />
<None Remove="Properties\**" />
<Compile Update="Bot\PluginConfig.cs">
<SubType>Form</SubType>
</Compile>
<None Update="libwebp.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Compile Remove="BotConfig.cs" />
<Compile Remove="BotEventSimulation.cs" />
<Compile Remove="SBActions.cs" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\Resources.Designer.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Properties\Resources.resx" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Imazen.WebP" Version="10.0.1" />
<PackageReference Include="LiteDB" Version="5.0.21" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.3296.44" />
<PackageReference Include="PusherClient" Version="2.2.1" />
<PackageReference Include="System.Resources.Extensions" Version="4.6.0" />
<PackageReference Include="Sentry" Version="5.10.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="PresentationFramework" />
<Reference Include="System.Web" />
<Reference Include="System.Windows.Forms" />
<Reference Include="Streamer.bot.Plugin.Interface">
<HintPath>..\Streamer.bot-1.0.0\Streamer.bot.Plugin.Interface.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="Resources\kick.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="actions.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="LICENSE.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Include="SBActions.cs" />
</ItemGroup>
</Project>