Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions NuGet.config
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<!-- <?xml version="1.0" encoding="utf-8"?> -->
<!-- <configuration> -->
<!-- <packageRestore> -->
<!-- <add key="automatic" value="False" /> -->
<!-- </packageRestore> -->
<!-- <packageSources> -->
<!-- <add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-ci-dev/api/v3/index.json" /> -->
<!-- <add key="NuGet" value="https://api.nuget.org/v3/index.json" /> -->
<!-- </packageSources> -->
<!-- </configuration> -->
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageRestore>
<add key="automatic" value="False" />
</packageRestore>
<packageSources>
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
<add key="MyGet" value="https://www.myget.org/F/my/api/v3/index.json" />
<add key="Local Nugets" value="D:\MySourceCodes\Tools\MyNuGet" />
</packageSources>
</configuration>
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>A plugin for Microsoft.EntityFrameworkCore to support automatically recording data changes history.</Description>
<VersionPrefix>6.0.0</VersionPrefix>
<Authors>rigofunc;rigofunc@outlook.com</Authors>
<TargetFramework>net6.0</TargetFramework>
<VersionPrefix>10.0.0</VersionPrefix>
<Authors>rigofunc;rigofunc@outlook.com;qermezkon@gmail.com</Authors>
<TargetFramework>net10.0</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyName>Microsoft.EntityFrameworkCore.AutoHistory</AssemblyName>
<PackageId>Microsoft.EntityFrameworkCore.AutoHistory</PackageId>
<PackageTags>Entity Framework Core;entity-framework-core;EF;Data;O/RM;Auto History;auto-history</PackageTags>
<PackageProjectUrl>https://github.com/arch/AutoHistory</PackageProjectUrl>
<PackageProjectUrl>https://github.com/AIKICo/AutoHistory</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/arch/AutoHistory.git</RepositoryUrl>
<RepositoryUrl>https://github.com/AIKICo/AutoHistory.git</RepositoryUrl>
<Version>10.0.0</Version>
<PackageVersion>10.0.0</PackageVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.11" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyName>Microsoft.EntityFrameworkCore.AutoHistory.Test</AssemblyName>
<PackageId>Microsoft.EntityFrameworkCore.AutoHistory.Test</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="6.0.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="10.0.11" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit" Version="2.9.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Microsoft.EntityFrameworkCore.AutoHistory\Microsoft.EntityFrameworkCore.AutoHistory.csproj" />
Expand Down