forked from shanselman/PowerPointToOBSSceneSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPowerPointToOBSSceneSwitcher.csproj
36 lines (31 loc) · 1.22 KB
/
PowerPointToOBSSceneSwitcher.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="PowerPointInterop\**" />
<Compile Remove="PresentationObsSceneSwitcherConsole\**" />
<Compile Remove="PresentationObsSceneSwitcher\**" />
<EmbeddedResource Remove="PowerPointInterop\**" />
<EmbeddedResource Remove="PresentationObsSceneSwitcherConsole\**" />
<EmbeddedResource Remove="PresentationObsSceneSwitcher\**" />
<None Remove="PowerPointInterop\**" />
<None Remove="PresentationObsSceneSwitcherConsole\**" />
<None Remove="PresentationObsSceneSwitcher\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="OBS.WebSocket.NET" Version="4.7.2" />
</ItemGroup>
<ItemGroup>
<COMReference Include="Microsoft.Office.Interop.PowerPoint">
<Guid>{91493440-5a91-11cf-8700-00aa0060263b}</Guid>
<VersionMajor>2</VersionMajor>
<VersionMinor>12</VersionMinor>
<WrapperTool>primary</WrapperTool>
<Lcid>0</Lcid>
<Isolated>false</Isolated>
<EmbedInteropTypes>True</EmbedInteropTypes>
</COMReference>
</ItemGroup>
</Project>