File tree Expand file tree Collapse file tree 9 files changed +19
-17
lines changed
LinkDotNet.Blog.Infrastructure
Features/Admin/BlogPostEditor/Components
LinkDotNet.Blog.IntegrationTests
LinkDotNet.Blog.TestUtilities
LinkDotNet.Blog.UnitTests Expand file tree Collapse file tree 9 files changed +19
-17
lines changed Original file line number Diff line number Diff line change 5
5
<PrivateAssets >all</PrivateAssets >
6
6
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
7
7
</PackageReference >
8
- <PackageReference Include =" StyleCop.Analyzers" Version =" 1.2.0-beta.406 " >
8
+ <PackageReference Include =" StyleCop.Analyzers" Version =" 1.2.0-beta.435 " >
9
9
<PrivateAssets >all</PrivateAssets >
10
10
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
11
11
</PackageReference >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net6 .0</TargetFramework >
4
+ <TargetFramework >net7 .0</TargetFramework >
5
5
<Nullable >disable</Nullable >
6
6
<AssemblyName >LinkDotNet.Blog.Domain</AssemblyName >
7
7
<RootNamespace >LinkDotNet.Blog.Domain</RootNamespace >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net6 .0</TargetFramework >
4
+ <TargetFramework >net7 .0</TargetFramework >
5
5
<AssemblyName >LinkDotNet.Blog.Infrastructure</AssemblyName >
6
6
<RootNamespace >LinkDotNet.Blog.Infrastructure</RootNamespace >
7
7
</PropertyGroup >
8
8
9
9
<ItemGroup >
10
- <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 6 .0.5 " />
10
+ <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 7 .0.0-preview.4.22229.2 " />
11
11
<PackageReference Include =" RavenDB.Client" Version =" 5.3.102" />
12
12
<PackageReference Include =" X.PagedList" Version =" 8.4.0" />
13
13
</ItemGroup >
Original file line number Diff line number Diff line change 9
9
private const string SelectedMarker = " #selection#" ;
10
10
private const string CursorMarker = " #cursor#" ;
11
11
12
+ #pragma warning disable BL0007
12
13
[Parameter ]
13
14
public string Value
14
15
{
22
23
}
23
24
}
24
25
}
26
+ #pragma warning restore
25
27
26
28
[Parameter ]
27
29
public EventCallback <string > ValueChanged { get ; set ; }
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Web" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net6 .0</TargetFramework >
4
+ <TargetFramework >net7 .0</TargetFramework >
5
5
<UserSecretsId >aspnet-LinkDotNet.Blog.Web-31CD57F3-BF63-48F3-96A7-22DFD9D6A7F0</UserSecretsId >
6
6
</PropertyGroup >
7
7
8
8
<ItemGroup >
9
9
<PackageReference Include =" Blazored.Toast" Version =" 3.2.2" />
10
10
<PackageReference Include =" BuildBundlerMinifier" Version =" 3.2.449" />
11
11
<PackageReference Include =" Markdig" Version =" 0.30.2" />
12
- <PackageReference Include =" Microsoft.AspNetCore.Authentication.OpenIdConnect" Version =" 6 .0.5 " />
13
- <PackageReference Include =" Microsoft.EntityFrameworkCore.Sqlite" Version =" 6 .0.5 " />
14
- <PackageReference Include =" Microsoft.EntityFrameworkCore.SqlServer" Version =" 6 .0.5 " />
15
- <PackageReference Include =" System.ServiceModel.Syndication" Version =" 6 .0.0" />
12
+ <PackageReference Include =" Microsoft.AspNetCore.Authentication.OpenIdConnect" Version =" 7 .0.0-preview.4.22251.1 " />
13
+ <PackageReference Include =" Microsoft.EntityFrameworkCore.Sqlite" Version =" 7 .0.0-preview.4.22229.2 " />
14
+ <PackageReference Include =" Microsoft.EntityFrameworkCore.SqlServer" Version =" 7 .0.0-preview.4.22229.2 " />
15
+ <PackageReference Include =" System.ServiceModel.Syndication" Version =" 7 .0.0-preview.4.22229.4 " />
16
16
</ItemGroup >
17
17
18
18
<ItemGroup >
Original file line number Diff line number Diff line change 5
5
<PackageReference Include =" bunit" Version =" 1.7.7" />
6
6
<PackageReference Include =" FluentAssertions" Version =" 6.6.0" />
7
7
<PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.2.0" />
8
- <PackageReference Include =" Moq" Version =" 4.18.0 " />
8
+ <PackageReference Include =" Moq" Version =" 4.18.1 " />
9
9
<PackageReference Include =" xunit" Version =" 2.4.2-pre.12" />
10
10
<PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.5" >
11
11
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
26
26
<PrivateAssets >all</PrivateAssets >
27
27
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
28
28
</PackageReference >
29
- <PackageReference Include =" StyleCop.Analyzers" Version =" 1.2.0-beta.406 " >
29
+ <PackageReference Include =" StyleCop.Analyzers" Version =" 1.2.0-beta.435 " >
30
30
<PrivateAssets >all</PrivateAssets >
31
31
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
32
32
</PackageReference >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net6 .0</TargetFramework >
4
+ <TargetFramework >net7 .0</TargetFramework >
5
5
<IsPackable >false</IsPackable >
6
6
</PropertyGroup >
7
7
8
8
<ItemGroup >
9
- <PackageReference Include =" Microsoft.AspNetCore.Mvc.Testing" Version =" 6 .0.5 " />
10
- <PackageReference Include =" Microsoft.EntityFrameworkCore.Sqlite" Version =" 6 .0.5 " />
9
+ <PackageReference Include =" Microsoft.AspNetCore.Mvc.Testing" Version =" 7 .0.0-preview.4.22251.1 " />
10
+ <PackageReference Include =" Microsoft.EntityFrameworkCore.Sqlite" Version =" 7 .0.0-preview.4.22229.2 " />
11
11
<PackageReference Include =" RavenDB.TestDriver" Version =" 5.3.102" />
12
12
</ItemGroup >
13
13
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net6 .0</TargetFramework >
4
+ <TargetFramework >net7 .0</TargetFramework >
5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net6 .0</TargetFramework >
4
+ <TargetFramework >net7 .0</TargetFramework >
5
5
6
6
<IsPackable >false</IsPackable >
7
7
</PropertyGroup >
10
10
<ProjectReference Include =" ..\LinkDotNet.Blog.TestUtilities\LinkDotNet.Blog.TestUtilities.csproj" />
11
11
<ProjectReference Include =" ..\..\src\LinkDotNet.Blog.Web\LinkDotNet.Blog.Web.csproj" />
12
12
</ItemGroup >
13
- </Project >
13
+ </Project >
You can’t perform that action at this time.
0 commit comments