/
dOJer113
/
Insect
Обзор
Документация
Войти
/
dOJer113
/
Insect
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
lab_5
UI/UI.csproj
56 строк
3 KB
aleks
lab 5
14 дек 2025, 19:32
14 дек 2025, 19:32
395af5a
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>WinExe</OutputType> <TargetFramework>net8.0</TargetFramework> <Nullable>enable</Nullable> <BuiltInComInteropSupport>true</BuiltInComInteropSupport> <ApplicationManifest>app.manifest</ApplicationManifest> <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault> </PropertyGroup> <ItemGroup> <AvaloniaResource Include="Assets\**"/> </ItemGroup> <ItemGroup> <PackageReference Include="Avalonia" Version="11.2.1"/> <PackageReference Include="Avalonia.Desktop" Version="11.2.1"/> <PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.1"/> <PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.1"/> <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.--> <PackageReference Include="Avalonia.Diagnostics" Version="11.2.1"> <IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets> <PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets> </PackageReference> <PackageReference Include="Avalonia.ReactiveUI" Version="11.2.1"/> </ItemGroup> <ItemGroup> <ProjectReference Include="..\insects\insects.csproj" /> <ProjectReference Include="..\ProgressOverlayWindow\ProgressOverlayWindow.csproj" /> </ItemGroup> <ItemGroup> <UpToDateCheckInput Remove="Views\EditEngineModals\EditIonEngineWindow.axaml" /> <UpToDateCheckInput Remove="Views\EditEngineModals\EditLiquidPropellantEngineWindow.axaml" /> <UpToDateCheckInput Remove="Views\EditEngineModals\EditSolidPropellantEngineWindow.axaml" /> <UpToDateCheckInput Remove="Views\EditEngineModals\PlasmaEngineWindow.axaml" /> <UpToDateCheckInput Remove="Views\DeleteWindows\DeleteAndroidWindow.axaml" /> <UpToDateCheckInput Remove="Views\DeleteWindows\DeleteColorWindow.axaml" /> <UpToDateCheckInput Remove="Views\DeleteWindows\DeleteIosWindow.axaml" /> <UpToDateCheckInput Remove="Views\DeleteWindows\DeleteMonochromeWindow.axaml" /> </ItemGroup> <ItemGroup> <Compile Update="Views\EditWindows\LadyBugWindow.axaml.cs"> <DependentUpon>AddMonochromeWindow.axaml</DependentUpon> <SubType>Code</SubType> </Compile> </ItemGroup> <ItemGroup> <None Update="Views\EditWindows\EditMonarchWindow.axaml.cs"> <DependentUpon>EditMonarchWindow.cs</DependentUpon> </None> </ItemGroup> </Project>