-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZWOptical.SDK.csproj
More file actions
61 lines (54 loc) · 3.3 KB
/
ZWOptical.SDK.csproj
File metadata and controls
61 lines (54 loc) · 3.3 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>ZWOptical.SDK</RootNamespace>
<AssemblyName>ZWOptical.SDK</AssemblyName>
<PackageLicenseFile>license.txt</PackageLicenseFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<DebugType>embedded</DebugType>
<PackageId>ZWOptical.SDK</PackageId>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>Astronomy,ZWO,ASI</PackageTags>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<RepositoryUrl>https://github.com/SharpAstro/ZWOptical.SDK</RepositoryUrl>
<PackageProjectUrl>https://github.com/SharpAstro/ZWOptical.SDK</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Description>Implements accessing the ZWO ASI, EAF and EFW devices using .NET</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
</PropertyGroup>
<ItemGroup>
<Compile Remove="demo/**" />
<EmbeddedResource Remove="demo/**" />
<None Remove="demo/**" />
<None Include="license.txt" PackagePath="" Pack="True" />
<None Include="README.md" PackagePath="" Pack="true" />
<None Include="lib/x86/libASICamera2.so" PackagePath="runtimes/linux-x86/native" Pack="True" />
<None Include="lib/x86/libEAFFocuser1.6.so" PackagePath="runtimes/linux-x86/native" Pack="True" />
<None Include="lib/x86/libEFW1.7.so" PackagePath="runtimes/linux-x86/native" Pack="True" />
<None Include="lib/x86/ASICamera2.dll" PackagePath="runtimes/win-x86/native" Pack="True" />
<None Include="lib/x86/EAFFocuser1.6.dll" PackagePath="runtimes/win-x86/native" Pack="True" />
<None Include="lib/x86/EFW1.7.dll" PackagePath="runtimes/win-x86/native" Pack="True" />
<None Include="lib/x64/libASICamera2.so" PackagePath="runtimes/linux-x64/native" Pack="True" />
<None Include="lib/x64/libEAFFocuser1.6.so" PackagePath="runtimes/linux-x64/native" Pack="True" />
<None Include="lib/x64/libEFW1.7.so" PackagePath="runtimes/linux-x64/native" Pack="True" />
<None Include="lib/x64/ASICamera2.dll" PackagePath="runtimes/win-x64/native" Pack="True" />
<None Include="lib/x64/EAFFocuser1.6.dll" PackagePath="runtimes/win-x64/native" Pack="True" />
<None Include="lib/x64/EFW1.7.dll" PackagePath="runtimes/win-x64/native" Pack="True" />
<None Include="lib/armv7/libASICamera2.so" PackagePath="runtimes/linux-arm/native" Pack="True" />
<None Include="lib/armv7/libEAFFocuser1.6.so" PackagePath="runtimes/linux-arm/native" Pack="True" />
<None Include="lib/armv7/libEFW1.7.so" PackagePath="runtimes/linux-arm/native" Pack="True" />
<None Include="lib/armv8/libASICamera2.so" PackagePath="runtimes/linux-arm64/native" Pack="True" />
<None Include="lib/armv8/libEAFFocuser1.6.so" PackagePath="runtimes/linux-arm64/native" Pack="True" />
<None Include="lib/armv8/libEFW1.7.so" PackagePath="runtimes/linux-arm64/native" Pack="True" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.200" PrivateAssets="All" />
<PackageReference Include="TianWen.DAL" Version="2.0.161" />
</ItemGroup>
</Project>