main
cs 13 lines 471 Bytes
Raw
1 // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3 namespace Example.Extension
4 {
5 using System.Xml.Linq;
6
7 internal class ExampleConstants
8 {
9 public static readonly XNamespace Namespace = "http://www.example.com/scheams/v1/wxs";
10
11 public static readonly XName ExampleName = Namespace + "Example";
12 }
13 }