-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSDRSharp.Plugin.SatControl.csproj
71 lines (71 loc) · 2.61 KB
/
SDRSharp.Plugin.SatControl.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<TargetFramework>net5.0-windows</TargetFramework>
<OutputType>Library</OutputType>
<Platforms>AnyCPU</Platforms>
<UseWindowsForms>true</UseWindowsForms>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<OutputPath>C:\hamsat\sdrsharp-x86-1822\Plugins\SatControl</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<OutputPath>..\Release\</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<COMReference Include="OmniRig">
<WrapperTool>tlbimp</WrapperTool>
<VersionMinor>0</VersionMinor>
<VersionMajor>1</VersionMajor>
<Guid>4fe359c5-a58f-459d-be95-ca559fb4f270</Guid>
<Lcid>0</Lcid>
<Isolated>false</Isolated>
<EmbedInteropTypes>true</EmbedInteropTypes>
</COMReference>
</ItemGroup>
<ItemGroup>
<Reference Include="SDRSharp.Common">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\SDRSharp.Common.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="SDRSharp.Radio">
<HintPath>lib\SDRSharp.Radio.dll</HintPath>
<Private>true</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Update="SatControlPanel.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="SatControlPanel.Designer.cs">
<DependentUpon>SatControlPanel.cs</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="SatControlPanel.resx">
<DependentUpon>SatControlPanel.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Windows.Compatibility" Version="5.0.1" />
<PackageReference Include="SGP.NET" Version="1.2.1" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<None Update="lib\SGP.NET.dll">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="lib\SGP.NET.pdb">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="lib\SGP.NET.xml">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>