-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathLeopardDemo.csproj
25 lines (21 loc) · 1.01 KB
/
LeopardDemo.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Configurations>FileDemo.Debug;FileDemo.Release;MicDemo.Debug;MicDemo.Release</Configurations>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'FileDemo.Debug' Or '$(Configuration)' == 'FileDemo.Release'">
<StartupObject>LeopardDemo.FileDemo</StartupObject>
<TargetName>LeopardFileDemo</TargetName>
<AssemblyName>LeopardFileDemo</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'MicDemo.Debug' Or '$(Configuration)' == 'MicDemo.Release'">
<StartupObject>LeopardDemo.MicDemo</StartupObject>
<TargetName>LeopardMicDemo</TargetName>
<AssemblyName>LeopardMicDemo</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PvRecorder" Version="1.2.5" />
<PackageReference Include="Leopard" Version="2.0.2" />
</ItemGroup>
</Project>