-
Notifications
You must be signed in to change notification settings - Fork 85
/
RhinoDemo.csproj
25 lines (21 loc) · 1022 Bytes
/
RhinoDemo.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>net8.0</TargetFramework>
<Configurations>FileDemo.Debug;FileDemo.Release;MicDemo.Debug;MicDemo.Release</Configurations>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'FileDemo.Debug' Or '$(Configuration)' == 'FileDemo.Release'">
<StartupObject>RhinoDemo.FileDemo</StartupObject>
<TargetName>RhinoFileDemo</TargetName>
<AssemblyName>RhinoFileDemo</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'MicDemo.Debug' Or '$(Configuration)' == 'MicDemo.Release'">
<StartupObject>RhinoDemo.MicDemo</StartupObject>
<TargetName>RhinoMicDemo</TargetName>
<AssemblyName>RhinoMicDemo</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PvRecorder" Version="1.2.6" />
<PackageReference Include="Rhino" Version="3.0.4" />
</ItemGroup>
</Project>