-
Notifications
You must be signed in to change notification settings - Fork 1
/
Astromechanics Aperture Control.csproj
36 lines (36 loc) · 1.7 KB
/
Astromechanics Aperture Control.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<OutputType>Library</OutputType>
<RootNamespace>DaleGhent.NINA.AstromechApertureControl</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWPF>true</UseWPF>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Reference Include="System.Net" />
<Reference Include="System.Printing" />
</ItemGroup>
<ItemGroup>
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NINA.Plugin">
<Version>2.0.0.2059-beta</Version>
</PackageReference>
<PackageReference Include="Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers" Version="0.4.355802">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Windows.Compatibility" Version="7.0.0" />
</ItemGroup>
<PropertyGroup />
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="if not exist "%25localappdata%25\NINA\Plugin\$(TargetName)" (
 echo "Creating $(PlatformName) Plugins $(TargetName) folder"
 mkdir "%25localappdata%25\NINA\Plugins\$(TargetName)"
)

echo "Copying $(PlatformName) $(TargetFileName)"
xcopy "$(TargetPath)" "%25localappdata%25\NINA\Plugins\$(TargetName)" /h/i/c/k/e/r/y" />
</Target>
<ItemGroup>
<Content Remove="C:\Users\daleg\.nuget\packages\accord\3.8.0\build\Accord.dll.config" />
</ItemGroup>
</Project>