Files
Aaru/Aaru.Tui/Aaru.Tui.csproj

63 lines
2.2 KiB
XML
Raw Permalink Normal View History

2025-10-15 20:18:57 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
2025-10-15 22:05:55 +01:00
<TargetFramework>net10.0</TargetFramework>
2025-10-15 20:18:57 +01:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
2025-11-19 05:31:17 +00:00
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
2025-10-15 20:18:57 +01:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Consolonia"/>
2025-11-18 04:36:49 +00:00
<PackageReference Include="Prism.Avalonia"/>
<PackageReference Include="Prism.DryIoc.Avalonia"/>
2025-10-15 20:18:57 +01:00
</ItemGroup>
2025-10-15 21:25:05 +01:00
<ItemGroup>
<Compile Update="Views\Windows\MainWindow.axaml.cs">
<DependentUpon>MainWindow.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="Views\Windows\HexViewWindow.axaml.cs">
<DependentUpon>HexViewWindow.axaml</DependentUpon>
</Compile>
<Compile Update="Views\Dialogs\GoToSectorDialog.axaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Views\Dialogs\ImageHelpDialog.axaml.cs">
<DependentUpon>ImageHelpDialog.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="Views\Dialogs\HexViewHelpDialog.axaml.cs">
<DependentUpon>HexViewHelpDialog.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
2025-10-15 21:25:05 +01:00
</ItemGroup>
2025-10-15 22:05:55 +01:00
<ItemGroup>
2025-10-16 01:15:13 +01:00
<ProjectReference Include="..\Aaru.CommonTypes\Aaru.CommonTypes.csproj"/>
<ProjectReference Include="..\Aaru.Core\Aaru.Core.csproj"/>
2025-10-15 22:05:55 +01:00
<ProjectReference Include="..\Aaru.Helpers\Aaru.Helpers.csproj"/>
</ItemGroup>
2025-10-18 13:36:08 +01:00
<ItemGroup>
<EmbeddedResource Update="Localization\Resources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Update="Localization\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
2025-10-15 20:18:57 +01:00
</Project>