-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathSDRSharp.Plugin.Tetra1.2.csproj
55 lines (48 loc) · 1.77 KB
/
SDRSharp.Plugin.Tetra1.2.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<Platforms>AnyCPU</Platforms>
<UseWindowsForms>true</UseWindowsForms>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<AssemblyName>SDRSharp.Plugin.Tetra</AssemblyName>
<RootNamespace>SDRSharp.Plugin.Tetra</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<WarningLevel>0</WarningLevel>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<DefineConstants>TRACE</DefineConstants>
<OutputPath>..\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Update="DialogConfigure.cs" />
<Compile Update="Display.cs" />
<Compile Update="NetInfoWindow.cs" />
<Compile Update="TetraPanel.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<Reference Include="SDRSharp.Common">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\SDRSharp.Common.dll</HintPath>
</Reference>
<Reference Include="SDRSharp.PanView">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\SDRSharp.PanView.dll</HintPath>
</Reference>
<Reference Include="SDRSharp.Radio">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\SDRSharp.Radio.dll</HintPath>
</Reference>
</ItemGroup>
</Project>