405f3f4ee4
* renamespace * add to sln and move * manage package centrally * add sourcelink and use GlobalPackageReference * properly use globals * fix nuget push * fix readme * add namespace handling for new types * Removing used classes to stop viral spread of dependencies. Some JSON usage was STJ and not newtonsoft * fmt * initial test * serialization namespace test * fmt * put back old namespaces * fix tests * fixes while trying to do a roundtrip test * remove namespace fix
31 lines
823 B
XML
31 lines
823 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<IsTestProject>true</IsTestProject>
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FluentAssertions" />
|
|
<PackageReference Include="JunitXml.TestLogger" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
<PackageReference Include="NUnit" />
|
|
<PackageReference Include="NUnit3TestAdapter" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Speckle.Core\Speckle.Core.csproj" />
|
|
<ProjectReference Include="..\..\src\Speckle.Objects\Speckle.Objects.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<None Remove="RevitObject.json" />
|
|
<EmbeddedResource Include="RevitObject.json" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|