123456789101112131415161718192021222324252627 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <HotAvaloniaLite>enable</HotAvaloniaLite>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="log4net" Version="3.0.4" />
- <PackageReference Include="SukiUI" Version="6.0.1" />
- <PackageReference Condition="'$(Configuration)'=='Debug'" Include="Avalonia.Diagnostics" Version="11.2.7" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Avalonia\IconResourceSourceGenerator\IconResourceSourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
- <ProjectReference Include="..\..\Communication\ICommunication\ICommunication.csproj" />
- <ProjectReference Include="..\..\EventBroker\EventBroker\EventBroker.csproj" />
- <ProjectReference Include="..\..\NativeLibraryLoader\NativeLibraryLoader.csproj" />
- <ProjectReference Include="..\..\Shaker.Model\Shaker.Model.csproj" />
- <ProjectReference Include="..\Avalonia\Avalonia.Xaml.Behaviors\Avalonia.Xaml.Behaviors.csproj" />
- <ProjectReference Include="..\Language\ILanguage\ILanguage.csproj" />
- <ProjectReference Include="..\Language\LanguageSourceGenerator\LanguageSourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
- </ItemGroup>
- </Project>
|