Posted by: mikeoasis - Friday, 22 April 2022 00:27:03 |
---|
Both the sql-install zip and the sample-app zip access the database but go on an endless loop trying to select from the yaf_board table that does not exist How can I build the empty database? |
Posted by: tha_watcha - Friday, 22 April 2022 08:30:47 |
---|
Thanks for the report! The issue with the new installation will be fixed with the next release 3.1.4, which will be released on the weekend. |
Posted by: mikeoasis - Friday, 22 April 2022 13:15:42 |
---|
That's great to hear thanks - once I get it up and running, I would also like to get the source code running in VS 2019 if possible - I need to build an SSO integration ASAP |
Posted by: tha_watcha - Sunday, 24 April 2022 10:21:46 |
---|
New version is out. in theory it should also run in vs 2019 |
Posted by: mikeoasis - Sunday, 24 April 2022 21:26:20 |
---|
Unfortunately the source won't compile because namespace declarations end in semi-colons - instead of wrapping in brackets? [code=markup]/ *********************************************************************** // // Copyright (c) ServiceStack, Inc. All Rights Reserved. // // Fork for YetAnotherForum.NET, Licensed under the Apache License, Version 2.0 // *********************************************************************** namespace ServiceStack.Text; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using ServiceStack.Text.Common;[/code] Can you let me know why this is? |
Posted by: mikeoasis - Sunday, 24 April 2022 22:05:58 |
---|
Next I tried the sample app - and got much further all the way to "Initialize Database" - this is good but then the crash: Could not load type 'ServiceStack.DataAnnotations.ReferenceFieldAttribute' from assembly 'ServiceStack, Version=6.0.0.0, Culture=neutral, PublicKeyToken=02c12cbda47e6587'. |
Posted by: tha_watcha - Monday, 25 April 2022 08:53:23 |
---|
[quote=mikeoasis;73316]Unfortunately the source won't compile because namespace declarations end in semi-colons - instead of wrapping in brackets? [code=markup]/ *********************************************************************** // // Copyright (c) ServiceStack, Inc. All Rights Reserved. // // Fork for YetAnotherForum.NET, Licensed under the Apache License, Version 2.0 // *********************************************************************** namespace ServiceStack.Text; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using ServiceStack.Text.Common;[/code] Can you let me know why this is? [/quote] That's one of the new c# 10 features. It works on visual studio 2022. But I have not tested it on vs 2019. I check that in the next few days |
Posted by: mikeoasis - Monday, 25 April 2022 14:00:30 |
---|
Thanks didn't realize that, I'll upgrade to 2022 then |
Posted by: mikeoasis - Monday, 25 April 2022 23:57:06 |
---|
An update: the source is running nicely via Visual Studio 2022 thanks for your help |