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
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<Project>
|
|
<PropertyGroup Label="Company Info">
|
|
<Authors>Speckle</Authors>
|
|
<Company>Speckle</Company>
|
|
<Copyright>Copyright (c) AEC Systems Ltd</Copyright>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<AnalysisMode>Recommended</AnalysisMode>
|
|
<WarningsAsErrors>true</WarningsAsErrors>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>
|
|
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<RunAnalyzersDuringLiveAnalysis>False</RunAnalyzersDuringLiveAnalysis>
|
|
<RunAnalyzersDuringBuild>False</RunAnalyzersDuringBuild>
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<MinVerDefaultPreReleaseIdentifiers>alpha</MinVerDefaultPreReleaseIdentifiers>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
|
|
</ItemGroup>
|
|
</Project>
|