/
GeoExe
/
NamesHistogram_Task
Обзор
Документация
Войти
/
GeoExe
/
NamesHistogram_Task
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
NamesTask/Names.csproj
43 строки
2 KB
GeoExe
uploaded files
18 окт 2025, 20:31
18 окт 2025, 20:31
c5a591e
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net8.0</TargetFramework> <Nullable>enable</Nullable> <!--Avalonia doesen't support TrimMode=link currently,but we are working on that https://github.com/AvaloniaUI/Avalonia/issues/6892 --> <TrimMode>copyused</TrimMode> <BuiltInComInteropSupport>true</BuiltInComInteropSupport> <StartupObject>Names.UI.Program</StartupObject> </PropertyGroup> <ItemGroup> <None Remove=".gitignore" /> <Compile Remove="*.Initial.*" /> <None Include="*.Initial.*" /> <Compile Update="UI\MainWindow.axaml.cs"> <DependentUpon>MainWindow.axaml</DependentUpon> <SubType>Code</SubType> </Compile> <Compile Update="UI\App.axaml.cs"> <DependentUpon>App.axaml</DependentUpon> <SubType>Code</SubType> </Compile> </ItemGroup> <ItemGroup> <PackageReference Include="Avalonia" Version="11.3.6" /> <PackageReference Include="Avalonia.Desktop" Version="11.3.6" /> <PackageReference Include="Avalonia.ReactiveUI" Version="11.3.6" /> <PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.6" /> <PackageReference Include="System.Drawing.Common" Version="9.0.9" /> <PackageReference Include="OxyPlot.Core" Version="2.1.0" /> <PackageReference Include="OxyPlot.Avalonia" Version="2.1.0-Avalonia11" /> </ItemGroup> <ItemGroup> <EmbeddedResource Include="*.txt"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </EmbeddedResource> <EmbeddedResource Include="*/*.txt"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </EmbeddedResource> </ItemGroup> </Project>