Skip to content

Commit

Permalink
Updated project dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmoradi committed Feb 19, 2024
1 parent eaa6959 commit 480c89c
Show file tree
Hide file tree
Showing 39 changed files with 100 additions and 513 deletions.
20 changes: 10 additions & 10 deletions Samples/BitChangeSetManager/AspNetCore/BitChangeSetManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Bit.Server.Data.EntityFramework" Version="14.0.0" />
<PackageReference Include="Bit.Server.Hangfire" Version="14.0.0" />
<PackageReference Include="Bit.Server.IdentityServer" Version="14.0.0" />
<PackageReference Include="Bit.Server.OData" Version="14.0.0" />
<PackageReference Include="Bit.Server.Owin" Version="14.0.0" />
<PackageReference Include="Bit.Server.Signalr" Version="14.0.0" />
<PackageReference Include="Bit.Tooling.CodeAnalyzer" Version="14.0.0" />
<PackageReference Include="Bit.Tooling.CodeGenerator.Task" Version="14.0.0" />
<PackageReference Include="Bit.Universal.AutoMapper" Version="14.0.0" />
<PackageReference Include="Dapper" Version="2.1.15" />
<PackageReference Include="Bit.Server.Data.EntityFramework" Version="16.0.0" />
<PackageReference Include="Bit.Server.Hangfire" Version="16.0.0" />
<PackageReference Include="Bit.Server.IdentityServer" Version="16.0.0" />
<PackageReference Include="Bit.Server.OData" Version="16.0.0" />
<PackageReference Include="Bit.Server.Owin" Version="16.0.0" />
<PackageReference Include="Bit.Server.Signalr" Version="16.0.0" />
<PackageReference Include="Bit.Tooling.CodeAnalyzer" Version="16.0.0" />
<PackageReference Include="Bit.Tooling.CodeGenerator.Task" Version="16.0.0" />
<PackageReference Include="Bit.Universal.AutoMapper" Version="16.0.0" />
<PackageReference Include="Dapper" Version="2.1.28" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions Samples/BitChangeSetManager/AspNetCore/environments.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
},
{
"Key": "BitChangeSetManagerDbConnectionString",
"Value": "Data Source=.;Initial Catalog=BitChangeSetManagerDb;Integrated Security=True;Application Name=BitChangeSetManager;"
"Value": "Data Source=(localdb)\\mssqllocaldb;Initial Catalog=BitChangeSetManagerDb;Integrated Security=True;Application Name=BitChangeSetManager;"
},
{
"Key": "SignalRSqlServerConnectionString",
"Value": "Data Source=.;Initial Catalog=BitChangeSetManagerDb;Integrated Security=True;Application Name=BitChangeSetManager-Signalr;"
"Value": "Data Source=(localdb)\\mssqllocaldb;Initial Catalog=BitChangeSetManagerDb;Integrated Security=True;Application Name=BitChangeSetManager-Signalr;"
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Bit.Server.Data.EntityFrameworkCore" Version="14.0.0" />
<PackageReference Include="Bit.Server.WebApi" Version="14.0.0" />
<PackageReference Include="Bit.Tooling.CodeAnalyzer" Version="14.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0-rc.2.23480.1" />
<PackageReference Include="Bit.Server.Data.EntityFrameworkCore" Version="16.0.0" />
<PackageReference Include="Bit.Server.WebApi" Version="16.0.0" />
<PackageReference Include="Bit.Tooling.CodeAnalyzer" Version="16.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.2" />
</ItemGroup>
<ItemGroup>
<Content Update="environments.json">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"Version": "1"
},
"Configs": [
{
"Key": "AppConnectionString",
"Value": "Data Source=.;Initial Catalog=MyAppDb;Integrated Security=True;TrustServerCertificate=True;"
}
{
"Key": "AppConnectionString",
"Value": "Data Source=(localdb)\\mssqllocaldb;Initial Catalog=MyAppDb;Integrated Security=True;TrustServerCertificate=True;"
}
]
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Bit.Server.Data.EntityFramework" Version="14.0.0" />
<PackageReference Include="Bit.Server.WebApi" Version="14.0.0" />
<PackageReference Include="Bit.Tooling.CodeAnalyzer" Version="14.0.0" />
<PackageReference Include="Bit.Server.Data.EntityFramework" Version="16.0.0" />
<PackageReference Include="Bit.Server.WebApi" Version="16.0.0" />
<PackageReference Include="Bit.Tooling.CodeAnalyzer" Version="16.0.0" />
<PackageReference Include="EntityFramework" Version="6.4.4" />
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"Configs": [
{
"Key": "AppConnectionString",
"Value": "Data Source=.;Initial Catalog=MyAppDb;Integrated Security=True;"
"Value": "Data Source=(localdb)\\mssqllocaldb;Initial Catalog=MyAppDb;Integrated Security=True;"
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Bit.Server.Data.EntityFramework" Version="14.0.0" />
<PackageReference Include="Bit.Server.OData" Version="14.0.0" />
<PackageReference Include="Bit.Tooling.CodeAnalyzer" Version="14.0.0" />
<PackageReference Include="Bit.Universal.AutoMapper" Version="14.0.0" />
<PackageReference Include="Bit.Server.Data.EntityFramework" Version="16.0.0" />
<PackageReference Include="Bit.Server.OData" Version="16.0.0" />
<PackageReference Include="Bit.Tooling.CodeAnalyzer" Version="16.0.0" />
<PackageReference Include="Bit.Universal.AutoMapper" Version="16.0.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"ConnectionStrings": {
"AppConnectionString": "Data Source=.;Initial Catalog=MyAppDb;Integrated Security=True;"
"AppConnectionString": "Data Source=(localdb)\\mssqllocaldb;Initial Catalog=MyAppDb;Integrated Security=True;"
}
}
6 changes: 3 additions & 3 deletions Samples/WebApiSamples/WebApiSample/WebApiSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<UserSecretsId>075bb9c1-05ff-404a-ac1f-5670bb5bd331</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Bit.Server.WebApi" Version="14.0.0" />
<PackageReference Include="Bit.Tooling.CodeAnalyzer" Version="14.0.0" />
<PackageReference Include="Bit.Universal.AutoMapper" Version="14.0.0" />
<PackageReference Include="Bit.Server.WebApi" Version="16.0.0" />
<PackageReference Include="Bit.Tooling.CodeAnalyzer" Version="16.0.0" />
<PackageReference Include="Bit.Universal.AutoMapper" Version="16.0.0" />
</ItemGroup>
<ItemGroup>
<Content Update="environments.json">
Expand Down
2 changes: 1 addition & 1 deletion docs/bit-server-introduction/data-access.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ See environments.json file
"Configs": [
{
"Key": "AppConnectionString",
"Value": "Data Source=.;Initial Catalog=MyAppDb;Integrated Security=True;"
"Value": "Data Source=(localdb)\\mssqllocaldb;Initial Catalog=MyAppDb;Integrated Security=True;"
}
]
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.9" />
<PackageReference Include="Bit.Server.Data.EntityFramework" Version="14.0.0" />
<PackageReference Include="Bit.Server.WebApi" Version="14.0.0" />
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
<PackageReference Include="Bit.Server.Data.EntityFramework" Version="16.0.0" />
<PackageReference Include="Bit.Server.WebApi" Version="16.0.0" />
<PackageReference Include="Bit.System.Diagnostics.CodeAnalysis" Version="1.0.0" />
<PackageReference Include="SharpRepository.EfRepository" Version="2.1.3" />
</ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions docs/src/EntityFrameworkOptimizedForNTierScenarios/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class Order : IEntity
public class CustomersDbContextForSharpRepository : DbContext
{
public CustomersDbContextForSharpRepository()
: base(new SqlConnection("Data Source=.;Initial Catalog=CustomersDb;Integrated Security=True"), contextOwnsConnection: true)
: base(new SqlConnection("Data Source=(localdb)\\mssqllocaldb;Initial Catalog=CustomersDb;Integrated Security=True"), contextOwnsConnection: true)
{
Configuration.ProxyCreationEnabled = false;
}
Expand Down Expand Up @@ -103,13 +103,13 @@ public List<Customer> GetCustomersBySharpRepository()
public class CustomersDbContextForBitRepository : EfDbContextBase
{
public CustomersDbContextForBitRepository()
: base(new SqlConnection("Data Source=.;Initial Catalog=CustomersDb;Integrated Security=True"), contextOwnsConnection: true)
: base(new SqlConnection("Data Source=(localdb)\\mssqllocaldb;Initial Catalog=CustomersDb;Integrated Security=True"), contextOwnsConnection: true)
{

}

public CustomersDbContextForBitRepository(IDbConnectionProvider dbConnectionProvider)
: base("Data Source=.;Initial Catalog=CustomersDb;Integrated Security=True", dbConnectionProvider)
: base("Data Source=(localdb)\\mssqllocaldb;Initial Catalog=CustomersDb;Integrated Security=True", dbConnectionProvider)
{

}
Expand Down
2 changes: 1 addition & 1 deletion src/Bit.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<PackageIconUrl>https://avatars.githubusercontent.com/u/22663390</PackageIconUrl>


<ReleaseVersion>15.0.0</ReleaseVersion>
<ReleaseVersion>16.0.0</ReleaseVersion>

<PackageReleaseNotes>https://github.com/bitfoundation/bitplatform/releases/tag/v-$(ReleaseVersion)</PackageReleaseNotes>
<PackageVersion>$(ReleaseVersion)</PackageVersion>
Expand Down
Loading

0 comments on commit 480c89c

Please sign in to comment.