Ahcurani.DbContextData 1.0.1

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Ahcurani.DbContextData --version 1.0.1
                    
NuGet\Install-Package Ahcurani.DbContextData -Version 1.0.1
                    
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="Ahcurani.DbContextData" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ahcurani.DbContextData" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Ahcurani.DbContextData" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Ahcurani.DbContextData --version 1.0.1
                    
#r "nuget: Ahcurani.DbContextData, 1.0.1"
                    
#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.
#:package Ahcurani.DbContextData@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Ahcurani.DbContextData&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Ahcurani.DbContextData&version=1.0.1
                    
Install as a Cake Tool

Introduction

This is a simple pipeline example for a .NET Core application, showing just how easy it is to get up and running with .NET development using GitLab.

If you're new to .NET you'll want to check out the tutorial, but if you're already a seasoned developer considering building your own .NET app with GitLab, this should all look very familiar.

What's contained in this project

The root of the repository contains the out of the dotnet new console command, which generates a new console application that just prints out "Hello, World." It's a simple example, but great for demonstrating how easy GitLab CI is to use with .NET. Check out the Program.cs and dotnetcore.csproj files to see how these work.

In addition to the .NET Core content, there is a ready-to-go .gitignore file sourced from the the .NET Core .gitignore. This will help keep your repository clean of build files and other configuration.

Finally, the .gitlab-ci.yml contains the configuration needed for GitLab to build your code. Let's take a look, section by section.

First, we note that we want to use the official Microsoft .NET SDK image to build our project.

image: microsoft/dotnet:latest

We're defining two stages here: build, and test. As your project grows in complexity you can add more of these.

stages:
    - build
    - test

Next, we define our build job which simply runs the dotnet build command and identifies the bin folder as the output directory. Anything in the bin folder will be automatically handed off to future stages, and is also downloadable through the web UI.

build:
    stage: build
    script:
        - "dotnet build"
    artifacts:
      paths:
        - bin/

Similar to the build step, we get our test output simply by running dotnet test.

test:
    stage: test
    script: 
        - "dotnet test"

This should be enough to get you started. There are many, many powerful options for your .gitlab-ci.yml. You can read about them in our documentation here.

Developing with Gitpod

This template repository also has a fully-automated dev setup for Gitpod.

The .gitpod.yml ensures that, when you open this repository in Gitpod, you'll get a cloud workspace with .NET Core pre-installed, and your project will automatically be built and start running.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated