mirror of
https://github.com/fergalmoran/EFCore.NamingConventions.git
synced 2026-01-02 15:09:34 +00:00
@@ -1,13 +1,13 @@
|
|||||||
<Project>
|
<Project>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Update="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.0.0" />
|
<PackageReference Update="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.1" />
|
||||||
<PackageReference Update="Microsoft.EntityFrameworkCore" Version="3.0.0" />
|
<PackageReference Update="Microsoft.EntityFrameworkCore" Version="3.1.1" />
|
||||||
<PackageReference Update="Microsoft.EntityFrameworkCore.Relational" Version="3.0.0" />
|
<PackageReference Update="Microsoft.EntityFrameworkCore.Relational" Version="3.1.1" />
|
||||||
|
|
||||||
<!-- Test -->
|
<!-- Test -->
|
||||||
<PackageReference Update="xunit" Version="2.4.1" />
|
<PackageReference Update="xunit" Version="2.4.1" />
|
||||||
<PackageReference Update="xunit.runner.visualstudio" Version="2.4.1" />
|
<PackageReference Update="xunit.runner.visualstudio" Version="2.4.1" />
|
||||||
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="16.3.0" />
|
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="16.4.0" />
|
||||||
<PackageReference Update="Microsoft.EntityFrameworkCore.InMemory" Version="3.0.0" />
|
<PackageReference Update="Microsoft.EntityFrameworkCore.InMemory" Version="3.1.1" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp3.0</TargetFramework>
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<AssemblyName>EFCore.NamingConventions</AssemblyName>
|
<AssemblyName>EFCore.NamingConventions</AssemblyName>
|
||||||
<RootNamespace>EFCore</RootNamespace>
|
<RootNamespace>EFCore</RootNamespace>
|
||||||
<TargetFramework>netstandard2.1</TargetFramework>
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
<VersionPrefix>1.0.0</VersionPrefix>
|
<VersionPrefix>1.0.0</VersionPrefix>
|
||||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||||
<SignAssembly>true</SignAssembly>
|
<SignAssembly>true</SignAssembly>
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
<AssemblyOriginatorKeyFile>../EFCore.NamingConventions.snk</AssemblyOriginatorKeyFile>
|
<AssemblyOriginatorKeyFile>../EFCore.NamingConventions.snk</AssemblyOriginatorKeyFile>
|
||||||
<Description>Naming Conventions for Entity Framework Core Tables and Columns.</Description>
|
<Description>Naming Conventions for Entity Framework Core Tables and Columns.</Description>
|
||||||
<Authors>Shay Rojansky</Authors>
|
<Authors>Shay Rojansky</Authors>
|
||||||
<Copyright>Copyright 2019 © Shay Rojansky</Copyright>
|
<Copyright>Copyright 2020 © Shay Rojansky</Copyright>
|
||||||
<PackageTags>Entity Framework Core;entity-framework-core;ef;efcore;orm;sql;postgresql;npgsql</PackageTags>
|
<PackageTags>Entity Framework Core;entity-framework-core;ef;efcore;orm;sql;postgresql;npgsql</PackageTags>
|
||||||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
||||||
<RepositoryType>git</RepositoryType>
|
<RepositoryType>git</RepositoryType>
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
using System.Diagnostics.CodeAnalysis;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||||
using Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure;
|
using Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure;
|
||||||
using EFCore.NamingConventions.Internal;
|
using EFCore.NamingConventions.Internal;
|
||||||
|
using JetBrains.Annotations;
|
||||||
|
|
||||||
// ReSharper disable once CheckNamespace
|
// ReSharper disable once CheckNamespace
|
||||||
namespace Microsoft.Extensions.DependencyInjection
|
namespace Microsoft.Extensions.DependencyInjection
|
||||||
|
|||||||
Reference in New Issue
Block a user