2019-04-29 23:34:09 +00:00
|
|
|
|
/*
|
|
|
|
|
* Copyright 2019 faddenSoft
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License 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.
|
|
|
|
|
*/
|
|
|
|
|
using System;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
|
2019-07-20 20:28:10 +00:00
|
|
|
|
namespace SourceGen {
|
2019-04-29 23:34:09 +00:00
|
|
|
|
/// <summary>
|
2019-09-21 20:46:08 +00:00
|
|
|
|
/// Application class.
|
2019-04-29 23:34:09 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class App : Application {
|
2019-07-21 23:56:25 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// SourceGen version number.
|
|
|
|
|
/// </summary>
|
2019-05-05 23:50:28 +00:00
|
|
|
|
public static readonly CommonUtil.Version ProgramVersion =
|
2020-03-12 17:08:26 +00:00
|
|
|
|
new CommonUtil.Version(1, 6, 0, CommonUtil.Version.PreRelType.Dev, 1);
|
2019-04-29 23:34:09 +00:00
|
|
|
|
}
|
|
|
|
|
}
|