Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion streamerbot/3.api/3.csharp/1.recipes/visual-studio-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ Open the `Explorer` view by selecting `View > Explorer` from the menu bar, or us
```xml [StreamerBot.csproj]
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net481</TargetFramework>
<LangVersion>13.0</LangVersion>
<Nullable>enable</Nullable>
Expand All @@ -85,6 +84,10 @@ Open the `Explorer` view by selecting `View > Explorer` from the menu bar, or us
<Reference Include="$(StreamerBotPath)/NAudio*.dll" />
<Reference Include="$(StreamerBotPath)/Wpf*.dll" />
<Reference Include="$(StreamerBotPath)/Newtonsoft.Json.dll" />
<Reference Include="$(StreamerBotPath)/System.*.dll" />

<Reference Include="System.Web" />
<Reference Include="System.Net.Http" />

<!-- Uncomment the following line to reference all dlls in the streamerbot directory -->
<!-- <Reference Include="$(StreamerBotPath)/**/*.dll" /> -->
Expand Down
Loading