Skip to content

Commit

Permalink
Update VSIX dependencies to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikEJ committed Jan 12, 2024
1 parent ee5527f commit f6fc086
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
16 changes: 8 additions & 8 deletions src/GUI/EFCorePowerTools/EFCorePowerTools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -537,25 +537,25 @@
<PackageReference Include="AdysTech.CredentialManager" Version="2.6.0" />
<PackageReference Include="Ben.Demystifier" Version="0.4.1" />
<PackageReference Include="Community.VisualStudio.Toolkit.17" Version="17.0.507" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.6.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.6.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.8.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.2" />
<PackageReference Include="Microsoft.VisualStudio.Data.Framework" Version="17.4.33103.184" />
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.0.32112.339" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.1" />
<PackageReference Include="Microsoft.VisualStudio.Data.Framework" Version="17.5.33428.388" />
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.8.37222" />
<PackageReference Include="Microsoft.VSSDK.BuildTools">
<Version>17.8.2365</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf">
<Version>1.1.39</Version>
<Version>1.1.77</Version>
</PackageReference>
<PackageReference Include="MvvmLightLibs">
<Version>5.4.1.1</Version>
</PackageReference>
<PackageReference Include="NuGet.ProjectModel" Version="6.6.0" />
<PackageReference Include="JetBrains.Annotations" Version="2020.1.0" />
<PackageReference Include="NuGet.ProjectModel" Version="6.8.0" />
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" />
</ItemGroup>
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
6 changes: 4 additions & 2 deletions test/Ef7Playground/Ef7Playground/Models/NorthwindContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,7 @@ protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
#warning To protect potentially sensitive information in your connection string, you should move it out of source code. You can avoid scaffolding the connection string by using the Name= syntax to read it from configuration - see https://go.microsoft.com/fwlink/?linkid=2131148. For more guidance on storing connection strings, see http://go.microsoft.com/fwlink/?LinkId=723263.
=> optionsBuilder.UseSqlServer("Data Source=.\\SQLEXPRESS;Initial Catalog=Northwind;Integrated Security=True;Encrypt=True;Trust Server Certificate=True;Command Timeout=300", x => x
.UseNetTopologySuite()
.UseHierarchyId())
.LogTo(Console.WriteLine);
.UseHierarchyId());

protected override void OnModelCreating(ModelBuilder modelBuilder)
{
Expand Down Expand Up @@ -608,6 +607,9 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)

entity.Property(e => e.Id).ValueGeneratedNever();
entity.Property(e => e.Test2).HasColumnType("geometry");
entity.Property(e => e.Testname)
.HasMaxLength(128)
.HasColumnName("testname");
});

modelBuilder.Entity<StringSplitResult>(entity =>
Expand Down
2 changes: 2 additions & 0 deletions test/Ef7Playground/Ef7Playground/Models/Special.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@ public partial class Special
public DateOnly? TheDate { get; set; }

public TimeOnly? TheTime { get; set; }

public string? Testname { get; set; }
}

0 comments on commit f6fc086

Please sign in to comment.