AStar.Infrastructure
1.9.0
dotnet add package AStar.Infrastructure --version 1.9.0
NuGet\Install-Package AStar.Infrastructure -Version 1.9.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AStar.Infrastructure" Version="1.9.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AStar.Infrastructure --version 1.9.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AStar.Infrastructure, 1.9.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AStar.Infrastructure as a Cake Addin #addin nuget:?package=AStar.Infrastructure&version=1.9.0 // Install AStar.Infrastructure as a Cake Tool #tool nuget:?package=AStar.Infrastructure&version=1.9.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
astar-infrastructure
AStar Infrastructure - not for general use
How to add a migration - SQL Server
dotnet tool install --global dotnet-ef -- only required the first time
// https://learn.microsoft.com/en-us/ef/core/managing-schemas/migrations/?tabs=dotnet-core-cli
If no migrations exist (i.e. you have removed to have a 'clean slate'):
dotnet ef migrations add NewMigration --startup-project "F:\repos\astar-infrastructure\src\ConsoleApp" --project "f:\repos\astar-infrastructure\src\astar.infrastructure"
Otherwise:
Run the following in the "Directory: F:\repos\astar-infrastructure\src" directory
dotnet ef migrations add InitialMigration --startup-project ConsoleApp --project AStar.Infrastructure.Migrations --context FilesContext
and
dotnet ef database update --startup-project ConsoleApp --project AStar.Infrastructure.Migrations --context FilesContext
graph TD
A[Enter Chart Definition] --> B(Preview)
B --> C{decide}
C --> D[Keep]
C --> E[Edit Definition]
E --> B
D --> F[Save Image and Code]
F --> B
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- AStar.Utilities (>= 1.3.0)
- Microsoft.EntityFrameworkCore.InMemory (>= 8.0.7)
- Microsoft.EntityFrameworkCore.SqlServer (>= 8.0.7)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
This version moves the migrations to a separate project. There may be breaking changes
as the NuGet is intended for internal use only and has not been checked for backwards compatability.