CSLA 10.0.0 alpha-0008 pre-release online #4752
Replies: 1 comment 6 replies
-
|
#4730 broke the source gen nuget packages. <PackageReference Include="Csla.Generator.AutoImplementProperties.CSharp" />
<PackageReference Include="Csla.Generator.AutoSerialization.CSharp" />The normal behavior referencing it like this: <PackageReference Include="Csla.Generator.AutoSerialization.CSharp">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>I could get rid of the compilation error with <PackageReference Include="Csla.Generator.AutoImplementProperties.CSharp" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="Csla.Generator.AutoSerialization.CSharp" PrivateAssets="all" ExcludeAssets="runtime" />but that led to a runtime error where the attribute could not be loaded. I think either the project structure or nuget packaging does something wrong. |
Beta Was this translation helpful? Give feedback.


Uh oh!
There was an error while loading. Please reload this page.
-
I have pushed a pre-release of CSLA 10 to NuGet.
We do have a few open backlog issues still, and this is a work in progress, but for those who are interested in helping with the testing effort, here's the first real opportunity.
There is a Upgrading to CSLA 10 doc online for your reference.
Please report any issues or bugs you find.
Beta Was this translation helpful? Give feedback.
All reactions