情况: Windows 11 -最新更新;.NET 6控制台应用程序-最新更新;sqlite sqlcypher nuget包(1.8.116) -也是最新版本;Visual (2019和2022)和Rider -所有最新版本)
我创建了一个小测试应用程序(见下面)
var options = new SQLiteConnectionString(databasePath, true, "testpassword");
var db = new SQLiteConnection(options);
db.CreateTable<AttributionRecord>
我使用的是Visual Studio2013,最近更新了VSSonarExtension (2016年1月21日发布)。此较新版本的VSSonarExtension (5.0.1)无法正常工作,在进行预览分析时需要购买许可证
http://www.jmecsoftware.com: License not found, or expired.
Max 15 files can be analyzed per session.
之前的版本(4.1.3)运行良好,它允许我进行增量分析和预览分析,而不会出现错误消息。
我现在能做的就是在不购买许可证的情况下修复这个错误消息,或者降级到4.1.3。你