b6b3e4514f
* Revert "main (revert) Back to sdk 3.1.8 (#777)"
This reverts commit 4a8bde2ed6.
* update to 3.2.1
* Clean up references for Local.sln
19 lines
675 B
XML
19 lines
675 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Configurations>Debug;Release;Local</Configurations>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
|
|
<PackageReference Include="Moq" />
|
|
<PackageReference Include="NUnit" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="'$(Configuration)' == 'Local'">
|
|
<ProjectReference Include="..\..\..\speckle-sharp-sdk\src\Speckle.Sdk\Speckle.Sdk.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="'$(Configuration)' != 'Local'">
|
|
<PackageReference Include="Speckle.Sdk" />
|
|
</ItemGroup>
|
|
</Project>
|