Files
NebulaLauncher/Nebula.Launcher/Nebula.Launcher.csproj

67 lines
3.7 KiB
XML
Raw Permalink Normal View History

2024-12-18 12:37:00 +03:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
2025-05-01 19:01:59 +03:00
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
2024-12-18 12:37:00 +03:00
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
2024-12-22 21:38:19 +03:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2024-12-18 12:37:00 +03:00
</PropertyGroup>
<ItemGroup>
2025-01-14 22:10:16 +03:00
<AvaloniaResource Include="Assets\**"/>
2024-12-18 12:37:00 +03:00
</ItemGroup>
<ItemGroup>
2026-01-16 18:32:37 +03:00
<PackageReference Include="AsyncImageLoader.Avalonia"/>
<PackageReference Include="Avalonia"/>
<PackageReference Include="Avalonia.Desktop"/>
<PackageReference Include="Avalonia.Svg.Skia"/>
<PackageReference Include="Avalonia.Themes.Fluent"/>
<PackageReference Include="Avalonia.Fonts.Inter"/>
2024-12-18 12:37:00 +03:00
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
2026-01-16 18:32:37 +03:00
<PackageReference Include="Avalonia.Diagnostics">
2024-12-18 12:37:00 +03:00
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
2026-01-16 18:32:37 +03:00
<PackageReference Include="CommunityToolkit.Mvvm"/>
<PackageReference Include="Fluent.Net"/>
<PackageReference Include="JetBrains.Annotations"/>
<PackageReference Include="Microsoft.Extensions.DependencyInjection"/>
<PackageReference Include="libsodium"/>
<PackageReference Include="Robust.Natives"/>
<PackageReference Include="Avalonia.Controls.ItemsRepeater"/>
2024-12-18 12:37:00 +03:00
</ItemGroup>
2024-12-19 12:46:22 +03:00
2025-01-07 17:01:00 +03:00
<Target Name="BuildCheck" AfterTargets="AfterBuild">
<Copy SourceFiles="..\Nebula.Runner\bin\$(Configuration)\$(TargetFramework)\Nebula.Runner.dll" DestinationFolder="$(OutDir)"/>
<Copy SourceFiles="..\Nebula.Runner\bin\$(Configuration)\$(TargetFramework)\Nebula.Runner.pdb" DestinationFolder="$(OutDir)"/>
<Copy SourceFiles="..\Nebula.Runner\bin\$(Configuration)\$(TargetFramework)\Nebula.Runner.deps.json" DestinationFolder="$(OutDir)"/>
<Copy SourceFiles="..\Nebula.Runner\bin\$(Configuration)\$(TargetFramework)\Nebula.Runner.runtimeconfig.json" DestinationFolder="$(OutDir)"/>
2025-06-27 21:31:38 +03:00
<Copy SourceFiles="..\Nebula.Runner\bin\$(Configuration)\$(TargetFramework)\0Harmony.dll" DestinationFolder="$(OutDir)"/>
2025-01-07 17:01:00 +03:00
</Target>
2024-12-22 16:38:47 +03:00
2025-03-10 16:40:50 +03:00
<Target Name="PublishCheck" AfterTargets="Publish">
<Copy SourceFiles="..\Nebula.Runner\bin\$(Configuration)\$(TargetFramework)\Nebula.Runner.dll" DestinationFolder="$(PublishDir)"/>
<Copy SourceFiles="..\Nebula.Runner\bin\$(Configuration)\$(TargetFramework)\Nebula.Runner.pdb" DestinationFolder="$(PublishDir)"/>
<Copy SourceFiles="..\Nebula.Runner\bin\$(Configuration)\$(TargetFramework)\Nebula.Runner.deps.json" DestinationFolder="$(PublishDir)"/>
<Copy SourceFiles="..\Nebula.Runner\bin\$(Configuration)\$(TargetFramework)\Nebula.Runner.runtimeconfig.json" DestinationFolder="$(PublishDir)"/>
2025-06-27 21:31:38 +03:00
2025-07-03 12:46:28 +03:00
<Copy SourceFiles="..\Nebula.Runner\bin\$(Configuration)\$(TargetFramework)\0Harmony.dll" DestinationFolder="$(PublishDir)"/>
2025-03-10 16:40:50 +03:00
</Target>
2025-05-07 14:55:00 +03:00
<ItemGroup>
<None Remove="Version.txt" />
<EmbeddedResource Include="Version.txt">
<LogicalName>Nebula.Launcher.Version.txt</LogicalName>
</EmbeddedResource>
</ItemGroup>
2024-12-22 16:38:47 +03:00
<ItemGroup>
2025-01-14 22:10:16 +03:00
<ProjectReference Include="..\Nebula.Shared\Nebula.Shared.csproj"/>
<ProjectReference Include="..\Nebula.SourceGenerators\Nebula.SourceGenerators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
2024-12-22 16:38:47 +03:00
</ItemGroup>
2024-12-18 12:37:00 +03:00
</Project>