Skip to content

Commit cfb55a2

Browse files
committed
convert to PackageReference + ref latest version
1 parent 4a6cf2a commit cfb55a2

File tree

5 files changed

+4
-60
lines changed

5 files changed

+4
-60
lines changed

src/BenchmarksAnalyzer.ServiceInterface/packages.config

-10
This file was deleted.

src/BenchmarksAnalyzer.ServiceModel/packages.config

-5
This file was deleted.

src/BenchmarksAnalyzer/Global.asax.cs

+4-8
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,10 @@ public override void Configure(Container container)
7575

7676
container.Resolve<IUserAuthRepository>().InitSchema();
7777

78-
using (var db = container.Resolve<IDbConnectionFactory>().Open())
79-
{
80-
db.CreateTableIfNotExists<TestPlan>();
81-
db.CreateTableIfNotExists<TestRun>();
82-
db.CreateTableIfNotExists<TestResult>();
83-
}
78+
using var db = container.Resolve<IDbConnectionFactory>().Open();
79+
db.CreateTableIfNotExists<TestPlan>();
80+
db.CreateTableIfNotExists<TestRun>();
81+
db.CreateTableIfNotExists<TestResult>();
8482
}
8583
}
8684

@@ -89,8 +87,6 @@ public class Global : System.Web.HttpApplication
8987
protected void Application_Start(object sender, EventArgs e)
9088
{
9189
log4net.Config.XmlConfigurator.Configure();
92-
93-
Licensing.RegisterLicenseFromFileIfExists(@"~/appsettings.license.txt".MapHostAbsolutePath());
9490
new AppHost().Init();
9591
}
9692
}

src/BenchmarksAnalyzer/packages.config

-33
This file was deleted.

tests/Perf.Tests/packages.config

-4
This file was deleted.

0 commit comments

Comments
 (0)