Skip to content

Commit

Permalink
FIX
Browse files Browse the repository at this point in the history
  • Loading branch information
0xF6 committed Sep 1, 2024
1 parent 2537238 commit 0211c50
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>

<!--
Directory.Packages.props is automatically picked up and imported by
Microsoft.Common.targets. This file needs to exist, even if empty so that
Expand All @@ -9,12 +8,11 @@
imported beforehand. We also don't need to add ourselves to
MSBuildAllProjects, as that is done by the file that imports us.
-->

<!-- Package versions for package references across all projects -->
<ItemGroup>
<PackageVersion Include="libLLVM" Version="18.1.3.1" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageVersion Include="NUnit" Version="4.1.0" />
<PackageVersion Include="NUnit3TestAdapter" Version="4.5.0" />
</ItemGroup>

</Project>
</Project>
8 changes: 8 additions & 0 deletions tests/LLVMSharp.UnitTests/LLVMSharp.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,16 @@
<!-- CA1711: Identifiers should not have incorrect suffix -->
<!-- CA1724: Type names should not match namespaces -->
<NoWarn>$(NoWarn);CA1707;CA1711;CA1724</NoWarn>
<RunAnalyzersDuringBuild>False</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>False</RunAnalyzersDuringLiveAnalysis>
<EnforceCodeStyleInBuild>False</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>False</EnableNETAnalyzers>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="libLLVM" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\sources\LLVMSharp\ishtar.llvm.csproj" />
</ItemGroup>
Expand Down

0 comments on commit 0211c50

Please sign in to comment.