-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSSC.csproj
More file actions
77 lines (77 loc) · 3.5 KB
/
Copy pathSSC.csproj
File metadata and controls
77 lines (77 loc) · 3.5 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows10.0.26100.0</TargetFramework>
<OutputType>WinExe</OutputType>
<AssemblyName>SuisStreamCompanion</AssemblyName>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>sound_player_icon_bundled.ico</ApplicationIcon>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>Release\</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="KokoroSharp.CPU" Version="0.6.7" />
<PackageReference Include="MarkdownSharp" Version="2.0.5" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="NAudio" Version="2.3.0" />
<PackageReference Include="NAudio.Asio" Version="2.3.0" />
<PackageReference Include="NAudio.Core" Version="2.3.0" />
<PackageReference Include="NAudio.Midi" Version="2.3.0" />
<PackageReference Include="NAudio.Vorbis" Version="1.5.0" />
<PackageReference Include="NAudio.Wasapi" Version="2.3.0" />
<PackageReference Include="NAudio.WinForms" Version="2.3.0" />
<PackageReference Include="NAudio.WinMM" Version="2.3.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="NVorbis" Version="0.10.5" />
<PackageReference Include="Raffinert.FuzzySharp" Version="4.0.1" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.2" />
<PackageReference Include="System.Security.AccessControl" Version="6.0.1" />
<PackageReference Include="Whisper.net.AllRuntimes" Version="1.9.1-preview1" />
</ItemGroup>
<ItemGroup>
<Content Include="sound_player_icon_bundled.ico" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\obs-websocket-dotnet\obs-websocket-dotnet\obs-websocket-dotnet.csproj" />
<ProjectReference Include="..\SpeedrunComSharp\src\SpeedrunComSharp\SpeedrunComSharp.csproj" />
<ProjectReference Include="..\SuiBot-TwitchSocket\SuiBot-TwitchSocket.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="CSS\style.css">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Forms\VideoRewardsDBEditor\EditDialogues\" />
<Folder Include="OBS_Controls\" />
</ItemGroup>
</Project>