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>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Consolonia"/>
|
|
|
|
|
</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>
|
2025-10-16 14:32:27 +01:00
|
|
|
<Compile Update="Views\Windows\HexViewWindow.axaml.cs">
|
|
|
|
|
<DependentUpon>HexViewWindow.axaml</DependentUpon>
|
|
|
|
|
</Compile>
|
2025-10-16 16:36:53 +01:00
|
|
|
<Compile Update="Views\Dialogs\GoToSectorDialog.axaml.cs">
|
|
|
|
|
<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-15 20:18:57 +01:00
|
|
|
</Project>
|