Skip to content

Commit ed480be

Browse files
author
Henk Kin
committed
Updated packages
Added sourcelink support Updated documentation Set version to 1.0.6
1 parent 33f4fd6 commit ed480be

File tree

3 files changed

+34
-16
lines changed

3 files changed

+34
-16
lines changed

Identifiers.EntityFrameworkCore.SqlServer.Tests/Identifiers.EntityFrameworkCore.SqlServer.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="3.1.2" />
10+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="3.1.3" />
1111
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
1212
<PackageReference Include="Moq" Version="4.13.1" />
1313
<PackageReference Include="xunit" Version="2.4.1" />
1414
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
</PackageReference>
18-
<PackageReference Include="coverlet.collector" Version="1.2.0">
18+
<PackageReference Include="coverlet.collector" Version="1.2.1">
1919
<PrivateAssets>all</PrivateAssets>
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2121
</PackageReference>
Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<TargetFramework>netstandard2.1</TargetFramework>
54
<Authors>Henk Kin</Authors>
65
<Company>Henk Kin</Company>
7-
<Description>.NET Core DependencyInjection Integration for Identifiers with EntityFrameworkCore.SqlServer</Description>
8-
<Copyright>Henk Kin</Copyright>
6+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
7+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
8+
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
99
<PackageProjectUrl>https://github.com/HenkKin/Identifiers.EntityFrameworkCore.SqlServer</PackageProjectUrl>
1010
<RepositoryUrl>https://github.com/HenkKin/Identifiers.EntityFrameworkCore.SqlServer.git</RepositoryUrl>
1111
<RepositoryType>GitHub</RepositoryType>
1212
<PackageTags>Identifiers id int guid di DependencyInjection Core EntityFramework EF SqlServer</PackageTags>
13-
<Version>1.0.5</Version>
14-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
15-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
16-
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
13+
<Description>.NET Core DependencyInjection Integration for Identifiers with EntityFrameworkCore.SqlServer</Description>
14+
<Copyright>Henk Kin</Copyright>
15+
<Version>1.0.6</Version>
16+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
17+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
18+
<IncludeSymbols>true</IncludeSymbols>
19+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1720
</PropertyGroup>
18-
19-
2021
<ItemGroup>
21-
<PackageReference Include="Identifiers" Version="1.0.3" />
22-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.2" />
23-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.2" />
22+
<PackageReference Include="Identifiers" Version="1.0.6" />
23+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.3" />
24+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.3" />
25+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
2426
</ItemGroup>
25-
</Project>
27+
</Project>

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ The Identifiers.EntityFrameworkCore.SqlServer library is an extension on [Identi
1111

1212
This library is Cross-platform, supporting `netstandard2.1`.
1313

14-
1514
### Installing Identifiers.EntityFrameworkCore.SqlServer
1615

1716
You should install [Identifiers.EntityFrameworkCore.SqlServer with NuGet](https://www.nuget.org/packages/Identifiers.EntityFrameworkCore.SqlServer):
@@ -82,3 +81,20 @@ public class YourDbContext : DbContext
8281
}
8382
...
8483
```
84+
85+
### Debugging
86+
87+
If you want to debug the source code, thats possible. [SourceLink](https://github.com/dotnet/sourcelink) is enabled. To use it, you have to change Visual Studio Debugging options:
88+
89+
Debug => Options => Debugging => General
90+
91+
Set the following settings:
92+
93+
[&nbsp;&nbsp;] Enable Just My Code
94+
95+
[X] Enable source server support
96+
97+
[X] Enable source link support
98+
99+
100+
Now you can use 'step into' (F11).

0 commit comments

Comments
 (0)