-
Notifications
You must be signed in to change notification settings - Fork 1
/
ANDOR-CS.csproj
40 lines (34 loc) · 1.55 KB
/
ANDOR-CS.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>ANDOR_CS</RootNamespace>
<AssemblyName>ANDOR_CS</AssemblyName>
<TargetFramework>net4.8</TargetFramework>
<LangVersion>9</LangVersion>
<Platforms>x64;x86</Platforms>
<ProjectGuid>{d1e8b17d-4c59-42dd-87bd-f111df8e631d}</ProjectGuid>
<Version>3.0.0</Version>
<Copyright>Copyright © Ilia Kosenkov, 2019-2021</Copyright>
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Platform)' == 'x64'">
<DefineConstants>X64</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Platform)' == 'x86'">
<DefineConstants>X86</DefineConstants>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<None Include="debug_image.fits" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DipolImage\DipolImage.csproj" />
<ProjectReference Include="..\FITS-CS\FITS-CS.csproj" />
<ProjectReference Include="..\Serializers\Serializers.csproj" />
<ProjectReference Include="..\SettingsManager\SettingsManager.csproj" />
<PackageReference Include="Dipol-UF.Andor.Dependencies" Version="1.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="System.Reactive" Version="5.0.0" />
</ItemGroup>
</Project>