lynMarkdigRenderTest58 1.0.0
dotnet add package lynMarkdigRenderTest58 --version 1.0.0
NuGet\Install-Package lynMarkdigRenderTest58 -Version 1.0.0
<PackageReference Include="lynMarkdigRenderTest58" Version="1.0.0" />
paket add lynMarkdigRenderTest58 --version 1.0.0
#r "nuget: lynMarkdigRenderTest58, 1.0.0"
// Install lynMarkdigRenderTest58 as a Cake Addin #addin nuget:?package=lynMarkdigRenderTest58&version=1.0.0 // Install lynMarkdigRenderTest58 as a Cake Tool #tool nuget:?package=lynMarkdigRenderTest58&version=1.0.0
NuGet Gallery — Where packages are found
This project powers nuget.org, the home for .NET's open-source ecosystem. For information about NuGet, visit the Home repository.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
Getting started
First install prerequisites:
- Visual Studio 2019 - Install the following
Workloads
:- ASP.NET and web development
- Azure development
- PowerShell 4.0
- SQL Server 2016 (with DB engine version 13.0 or greater)
Now run the NuGet Gallery:
- Clone the repository with
git clone https://github.com/NuGet/NuGetGallery.git
- Navigate to
.\NuGetGallery
- Build with
.\build.ps1
- Create the database and enable HTTPS with
.\tools\Setup-DevEnvironment.ps1
- Open
.\NuGetGallery.sln
using Visual Studio - Ensure the
NuGetGallery
project is the StartUp Project and pressF5
to run the site
Refer to our documentation for information on how to develop the frontend, use AAD, and more.
Deploy
You will find instructions on how to deploy the Gallery to Azure here.
Contribute
If you find a bug with the gallery, please visit the Issue tracker and create an issue. If you're feeling generous, please search to see if the issue is already logged before creating a new one.
When creating an issue, clearly explain
- What you were trying to do.
- What you expected to happen.
- What actually happened.
- Steps to reproduce the problem.
Also include any information you think is relevant to reproducing the problem such as the browser version you used. Does it happen when you switch browsers. And so on.
Submit a patch
Before starting work on an issue, either create an issue or comment on an existing issue to ensure that we're all communicating. We have a list of items that are up for grabs and you can start working on (but always ping us beforehand).
To contribute to the gallery, make sure to create a fork first. Make your changes in the fork following the Git Workflow. When you are done with your changes, send us a pull request.
Copyright and License
Copyright .NET Foundation
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
The Git Workflow
This is the Git workflow we're currently using:
Setting up
Clone and checkout the dev
branch.
Visual Studio may modify the applicationhost.config
file. You can force git to ignore changes to this file
with:
git update-index --assume-unchanged .vs/config/applicationhost.config
You can undo this with this command:
git update-index --no-assume-unchanged .vs/config/applicationhost.config
This should help prevent unwanted file commits.
When starting a new feature/unit of work.
Pull the latest. Begin by pulling to make sure you are up-to-date before creating a branch to do your work This assumes you have no local commits that haven't yet been pushed (i.e., that you were previously up-to-date with origin).
git checkout dev git pull dev
Create a topic branch to do your work. You must work in topic branches to help us keep our features isolated and easily moved between branches. Our policy is to start all topic branches off of the 'dev' branch. Branch names should use the following format '[user]-[bugnumber]'. If there is no bug yet, create one and assign it to yourself!
git checkout dev git checkout -b anurse-123
Do your work. Now, do your work using the following highly accurate and efficient algorithm 😃
Make changes.
Test your changes (you're practicing TDD, right?)
Add your changes to git's index.
git add -A
Commit your changes.
git commit -m "<description of work>"
if (moreWorkToDo) go to #3.1 else go to #4.
Start a code review. Start a code review by pushing your branch up to GitHub (
git push origin anurse-123
) and creating a Pull Request from your branch to dev. Wait for at least someone on the team to respond with: ":shipit:" (that's called the "Ship-It Squirrel" and you can put it in your own comments by typing:shipit:
).Merge your changes in to dev. Click the bright green "Merge" button on your pull request! Don't forget to delete the branch afterwards to keep our repo clean.
If there isn't a bright green button... well, you'll have to do some more complicated merging:
git checkout dev git pull origin dev git merge anurse-123 ... resolve conflicts ... git push origin dev
Be ready to guide your change through QA, Staging and Prod Your change will make its way through the QA, Staging and finally Prod branches as it's deployed to the various environments. Be prepared to fix additional bugs!
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
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 |
---|---|---|
1.0.0 | 0 | 11/24/2020 |