06ef3e67e2
* Correctly pin versions that need to be pinned and bump those that don't * .NET logging alignment * Fix test project dependencies * recommended verify settings * don't ask me why it needs this to work
14 lines
512 B
XML
14 lines
512 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<TestProjectAnalyserRules>true</TestProjectAnalyserRules>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Speckle.Sdk\Speckle.Sdk.csproj" />
|
|
<ProjectReference Include="..\Speckle.Sdk.Tests.Performance\Speckle.Sdk.Tests.Performance.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|