Skip to content
This repository has been archived by the owner on Mar 16, 2021. It is now read-only.

Commit

Permalink
Merge pull request #327 from NuGet/dev
Browse files Browse the repository at this point in the history
[ReleasePrep][2018.07.16]RI of dev into master
  • Loading branch information
skofman1 authored Jul 18, 2018
2 parents 3d999df + afd7fa4 commit 522605c
Show file tree
Hide file tree
Showing 82 changed files with 4,840 additions and 1,153 deletions.
78 changes: 4 additions & 74 deletions src/Catalog/Constants.cs
Original file line number Diff line number Diff line change
@@ -1,80 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

namespace NuGet.Services.Metadata.Catalog
{
public static class Constants
{
static Constants()
{
CatalogRoot = new Uri("http://nuget.org/catalog#Root");
CatalogPage = new Uri("http://nuget.org/catalog#Page");

Package = new Uri("http://nuget.org/schema#Package");
DeletePackage = new Uri("http://nuget.org/schema#DeletePackage");
DeleteRegistration = new Uri("http://nuget.org/schema#DeleteRegistration");
Resolver = new Uri("http://nuget.org/schema#Resolver");

Range = new Uri("http://nuget.org/gallery#Range");

RdfType = new Uri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type");
Integer = new Uri("http://www.w3.org/2001/XMLSchema#integer");
DateTime = new Uri("http://www.w3.org/2001/XMLSchema#dateTime");
}

public static Uri Package
{
get;
private set;
}
public static Uri DeletePackage
{
get;
private set;
}
public static Uri DeleteRegistration
{
get;
private set;
}
public static Uri CatalogRoot
{
get;
private set;
}
public static Uri CatalogPage
{
get;
private set;
}
public static Uri Resolver
{
get;
private set;
}
public static Uri Range
{
get;
private set;
}

public static Uri RdfType
{
get;
private set;
}
public static Uri Integer
{
get;
private set;
}
public static Uri DateTime
{
get;
private set;
}
public const string Sha512 = "SHA512";
}
}
}
Loading

0 comments on commit 522605c

Please sign in to comment.