mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
78 lines
4.2 KiB
XML
78 lines
4.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>Observatory</RootNamespace>
|
|
<SignAssembly>false</SignAssembly>
|
|
<DelaySign>false</DelaySign>
|
|
<AssemblyOriginatorKeyFile>ObservatoryKey.snk</AssemblyOriginatorKeyFile>
|
|
<!--<PublishTrimmed>true</PublishTrimmed>-->
|
|
<TrimMode>Link</TrimMode>
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<VersionSuffix>0.2.$([System.DateTime]::UtcNow.Year.ToString().Substring(2))$([System.DateTime]::UtcNow.DayOfYear.ToString().PadLeft(3, "0")).$([System.DateTime]::UtcNow.ToString(HHmm))</VersionSuffix>
|
|
<AssemblyVersion Condition=" '$(VersionSuffix)' == '' ">0.0.0.1</AssemblyVersion>
|
|
<AssemblyVersion Condition=" '$(VersionSuffix)' != '' ">$(VersionSuffix)</AssemblyVersion>
|
|
<Version Condition=" '$(VersionSuffix)' == '' ">0.0.1.0</Version>
|
|
<Version Condition=" '$(VersionSuffix)' != '' ">$(VersionSuffix)</Version>
|
|
<ApplicationIcon>Assets\EOCIcon-Presized.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="11.0.0-preview4" />
|
|
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.0.0-preview4" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.0.0-preview4" />
|
|
<PackageReference Include="Avalonia.Diagnostics" Version="11.0.0-preview4" />
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.0-preview4" />
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.0-preview4" />
|
|
<PackageReference Include="Avalonia.Themes.Simple" Version="11.0.0-preview4" />
|
|
<PackageReference Include="Egorozh.ColorPicker.Avalonia.Dialog" Version="11.0.0-preview1" />
|
|
<PackageReference Include="MessageBox.Avalonia" Version="2.3.1-prev2" />
|
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
|
|
<PackageReference Include="System.Speech" Version="7.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<AvaloniaResource Include="Assets\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="ObservatoryFramework">
|
|
<HintPath>..\ObservatoryFramework\bin\Release\net6.0\ObservatoryFramework.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Properties\Core.Designer.cs">
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Core.settings</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="UI\Views\CoreView.axaml.cs">
|
|
<DependentUpon>CoreView.axaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="UI\Views\NotificationView.axaml.cs">
|
|
<DependentUpon>NotificationView.axaml</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Properties\Core.settings">
|
|
<Generator>SettingsSingleFileGenerator</Generator>
|
|
<LastGenOutput>Core.Designer.cs</LastGenOutput>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
|
<Exec Condition=" '$(OS)' == 'Windows_NT'" Command="if not exist "$(ProjectDir)..\ObservatoryFramework\bin\Release\net5.0\ObservatoryFramework.dll" dotnet build "$(ProjectDir)..\ObservatoryFramework\ObservatoryFramework.csproj" -c Release" />
|
|
<Exec Condition=" '$(OS)' == 'Windows_NT'" Command="if not exist "$(OutDir)plugins\ObservatoryExplorer.dll" dotnet build "$(ProjectDir)..\ObservatoryExplorer\ObservatoryExplorer.csproj" -c $(ConfigurationName)" />
|
|
<Exec Condition=" '$(OS)' != 'Windows_NT'" Command="[ ! -e "$(ProjectDir)../ObservatoryFramework/bin/Release/net5.0/ObservatoryFramework.dll" ] && dotnet build "$(ProjectDir)../ObservatoryFramework/ObservatoryFramework.csproj" -c Release || echo No build necessary" />
|
|
<Exec Condition=" '$(OS)' != 'Windows_NT'" Command="[ ! -e "$(ProjectDir)$(OutDir)plugins/ObservatoryExplorer.dll" ] && dotnet build "$(ProjectDir)../ObservatoryExplorer/ObservatoryExplorer.csproj" -c $(ConfigurationName) || echo No build necessary" />
|
|
</Target>
|
|
|
|
</Project>
|