-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSDRSharp.Plugin.SignalRecorder.csproj
More file actions
41 lines (38 loc) · 1.44 KB
/
SDRSharp.Plugin.SignalRecorder.csproj
File metadata and controls
41 lines (38 loc) · 1.44 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<OutputType>Library</OutputType>
<Platforms>AnyCPU</Platforms>
<UseWindowsForms>true</UseWindowsForms>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>..\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>..\Release\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="SDRSharp.Common">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\SDRSharp.Common.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="SDRSharp.PanView">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\SDRSharp.PanView.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="SDRSharp.Radio">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\SDRSharp.Radio.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ScottPlot" Version="4.1.41" />
<PackageReference Include="ScottPlot.WinForms" Version="4.1.41" />
</ItemGroup>
</Project>