mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-13 11:17:50 -04:00
cd71963efd
# Description of Changes This reverts the version bump, since it seems to be causing test flakiness somehow. # API and ABI breaking changes None # Expected complexity level and risk 1 # Testing - [ ] CI passes --------- Co-authored-by: Zeke Foppa <bfops@users.noreply.github.com> Co-authored-by: John Detter <4099508+jdetter@users.noreply.github.com>
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>SpacetimeDB.BSATN.Codegen</AssemblyName>
|
|
<Version>1.11.2</Version>
|
|
<Title>SpacetimeDB BSATN Codegen</Title>
|
|
<Description>The SpacetimeDB BSATN Codegen implements the Roslyn incremental generators for BSATN serialization/deserialization in C#.</Description>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- We're going to include this analyzer in the Runtime package instead of publishing separately. -->
|
|
<IsPackable>false</IsPackable>
|
|
<IsRoslynComponent>true</IsRoslynComponent>
|
|
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<RootNamespace>SpacetimeDB.Codegen</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.3.1" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- dev-dependency to add internal C# classes and attributes not included in .NET Standard -->
|
|
<PackageReference Include="PolySharp" Version="1.14.1" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|