Skip to content

Commit

Permalink
fix: add csharp package reference (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzzerd committed Mar 11, 2024
2 parents b8e9a14 + dc1b2ed commit 47ea37e
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions SharpFM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.8.0" />

<PackageReference Include="Avalonia" Version="11.0.10" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.10" />
<PackageReference Include="Avalonia.Xaml.Interactions" Version="11.0.10" />
Expand All @@ -33,18 +35,21 @@
<PackageReference Include="Avalonia.AvaloniaEdit" Version="11.0.6" />
<PackageReference Include="TextMateSharp.Grammars" Version="1.0.56" />
<PackageReference Include="AvaloniaEdit.TextMate" Version="11.0.6" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.10" />
<!--Condition
below is needed to remove Avalonia.Diagnostics package from build output in Release
configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics"
Version="11.0.10" />
<PackageReference Include="FluentAvaloniaUI" Version="2.0.5" />

<PackageReference Include="MinVer" Version="5.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>

<PackageReference Include="NLog" Version="5.2.8" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.8" />

<None Update="nlog.config" CopyToOutputDirectory="Always" />
</ItemGroup>
</Project>
</Project>

0 comments on commit 47ea37e

Please sign in to comment.