-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHowardBot.csproj
More file actions
69 lines (61 loc) · 2.57 KB
/
Copy pathHowardBot.csproj
File metadata and controls
69 lines (61 loc) · 2.57 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>HowardBot</AssemblyName>
<RootNamespace></RootNamespace>
<ApplicationIcon>awePog.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>NU1701</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>NU1701</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Reference Aseemblies\**" />
<EmbeddedResource Remove="Reference Aseemblies\**" />
<None Remove="Reference Aseemblies\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AutoHotkey.Interop" Version="1.0.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="OBSClient" Version="2.1.1" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
<PackageReference Include="TwitchLib.Client" Version="3.3.1" />
<PackageReference Include="TwitchLib.PubSub" Version="3.2.6" />
</ItemGroup>
<ItemGroup>
<Reference Include="TwitchLib.Api">
<HintPath>Reference Aseemblies\TwitchLib.Api.dll</HintPath>
</Reference>
<Reference Include="TwitchLib.Api.Core">
<HintPath>Reference Aseemblies\TwitchLib.Api.Core.dll</HintPath>
</Reference>
<Reference Include="TwitchLib.Api.Core.Enums">
<HintPath>Reference Aseemblies\TwitchLib.Api.Core.Enums.dll</HintPath>
</Reference>
<Reference Include="TwitchLib.Api.Core.Interfaces">
<HintPath>Reference Aseemblies\TwitchLib.Api.Core.Interfaces.dll</HintPath>
</Reference>
<Reference Include="TwitchLib.Api.Core.Models">
<HintPath>Reference Aseemblies\TwitchLib.Api.Core.Models.dll</HintPath>
</Reference>
<Reference Include="TwitchLib.Api.Helix">
<HintPath>Reference Aseemblies\TwitchLib.Api.Helix.dll</HintPath>
</Reference>
<Reference Include="TwitchLib.Api.Helix.Models">
<HintPath>Reference Aseemblies\TwitchLib.Api.Helix.Models.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Content Include="HowardBot\Audio\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="HowardBot\Data\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>