Skip to content

Commit

Permalink
ReviewSentiment for Review
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanLieckens committed Nov 28, 2024
1 parent 91f1e82 commit 1737ca4
Show file tree
Hide file tree
Showing 8 changed files with 2,965 additions and 4 deletions.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Add steps that publish symbols, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4

name: 4.15.1$(Rev:.r)
name: 4.16.0$(Rev:.r)

trigger:
- main
Expand Down
4 changes: 2 additions & 2 deletions src/Mvp.Selections.Client/Mvp.Selections.Client.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Mvp.Selections.Client</id>
<version>4.14.0</version>
<version>4.16.0</version>
<releaseNotes>
+ XML Documentation
+ Review Sentiment
</releaseNotes>
<title>MVP Selections API Client</title>
<authors>sc-ivanlieckens</authors>
Expand Down
2 changes: 1 addition & 1 deletion src/Mvp.Selections.Data/DesignTimeContextFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public Context CreateDbContext(string[] args)
{
DbContextOptionsBuilder<Context> optionsBuilder = new();
optionsBuilder.UseSqlServer(
"Server=(LocalDB)\\\\MSSQLLocalDB;Integrated Security=true;AttachDbFileName=C:\\\\Code\\\\Mvp.Selections\\\\data\\\\Temp.mdf");
"Data Source=(LocalDB)\\MSSQLLocalDB;AttachDbFilename=C:\\Code\\Mvp.Selections\\data\\Temp.mdf;Integrated Security=True;Connect Timeout=30;Encrypt=True");

return new Context(optionsBuilder.Options);
}
Expand Down
Loading

0 comments on commit 1737ca4

Please sign in to comment.