-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGlobalAssemblyInfo.cs
32 lines (27 loc) · 1.18 KB
/
GlobalAssemblyInfo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// ---------------------------------------------------------------------------
// <copyright file="GlobalAssemblyInfo.cs" company="Tethys">
// Copyright (C) 2019-2020 T. Graf
// </copyright>
//
// Licensed under the MIT License.
// SPDX-License-Identifier: MIT
//
// 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.
// ---------------------------------------------------------------------------
using System.Reflection;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyCompany("")]
[assembly: AssemblyCopyright("Copyright © 2019-2020 T. Graf")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Version information
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
// AssemblyInformationalVersionAttribute is used for NuGet
[assembly: AssemblyInformationalVersionAttribute("1.1.0")]
// =================================