IViewModel.csproj 1.4 KB

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <HotAvaloniaLite>enable</HotAvaloniaLite>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="log4net" Version="3.0.4" />
  10. <PackageReference Include="SukiUI" Version="6.0.1" />
  11. <PackageReference Condition="'$(Configuration)'=='Debug'" Include="Avalonia.Diagnostics" Version="11.2.7" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\..\Avalonia\IconResourceSourceGenerator\IconResourceSourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
  15. <ProjectReference Include="..\..\Communication\ICommunication\ICommunication.csproj" />
  16. <ProjectReference Include="..\..\EventBroker\EventBroker\EventBroker.csproj" />
  17. <ProjectReference Include="..\..\NativeLibraryLoader\NativeLibraryLoader.csproj" />
  18. <ProjectReference Include="..\..\Shaker.Model\Shaker.Model.csproj" />
  19. <ProjectReference Include="..\Avalonia\Avalonia.Xaml.Behaviors\Avalonia.Xaml.Behaviors.csproj" />
  20. <ProjectReference Include="..\Language\ILanguage\ILanguage.csproj" />
  21. <ProjectReference Include="..\Language\LanguageSourceGenerator\LanguageSourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
  22. </ItemGroup>
  23. </Project>