Skip to content

Commit a904024

Browse files
committed
Increase version + adding copyright part to new GQI solution
1 parent 7a49dff commit a904024

File tree

3 files changed

+84
-2
lines changed

3 files changed

+84
-2
lines changed

working/templatepack.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<PackageType>template</PackageType>
5-
<PackageVersion>1.0.14</PackageVersion>
5+
<PackageVersion>1.0.15</PackageVersion>
66
<PackageId>Skyline.DataMiner.VisualStudioTemplates.Internal</PackageId>
77
<Title>DataMiner DotNet Templates</Title>
88
<Authors>SkylineCommunications</Authors>

working/templates/gqi-ad-hoc-data-source-solution/$SCRIPTNAME$_1/$SCRIPTNAME$_1.cs

+51
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,54 @@
1+
/*
2+
****************************************************************************
3+
* Copyright (c) $COPYRIGHTYEAR$, Skyline Communications NV All Rights Reserved. *
4+
****************************************************************************
5+
6+
By using this script, you expressly agree with the usage terms and
7+
conditions set out below.
8+
This script and all related materials are protected by copyrights and
9+
other intellectual property rights that exclusively belong
10+
to Skyline Communications.
11+
12+
A user license granted for this script is strictly for personal use only.
13+
This script may not be used in any way by anyone without the prior
14+
written consent of Skyline Communications. Any sublicensing of this
15+
script is forbidden.
16+
17+
Any modifications to this script by the user are only allowed for
18+
personal use and within the intended purpose of the script,
19+
and will remain the sole responsibility of the user.
20+
Skyline Communications will not be responsible for any damages or
21+
malfunctions whatsoever of the script resulting from a modification
22+
or adaptation by the user.
23+
24+
The content of this script is confidential information.
25+
The user hereby agrees to keep this confidential information strictly
26+
secret and confidential and not to disclose or reveal it, in whole
27+
or in part, directly or indirectly to any person, entity, organization
28+
or administration without the prior written consent of
29+
Skyline Communications.
30+
31+
Any inquiries can be addressed to:
32+
33+
Skyline Communications NV
34+
Ambachtenstraat 33
35+
B-8870 Izegem
36+
Belgium
37+
Tel. : +32 51 31 35 69
38+
Fax. : +32 51 31 01 29
39+
E-mail : info@skyline.be
40+
Web : www.skyline.be
41+
Contact : Ben Vandenberghe
42+
43+
****************************************************************************
44+
Revision History:
45+
46+
DATE VERSION AUTHOR COMMENTS
47+
48+
$INITIALVERSIONDATE$ 1.0.0.1 $AUTHORVERSIONHISTORY$, Skyline Initial version
49+
****************************************************************************
50+
*/
51+
152
namespace $NAMESPACE$_1
253
{
354
using System;

working/templates/gqi-ad-hoc-data-source-solution/.template_config/template.json

+32-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,38 @@
2626
"datatype": "string",
2727
"defaultValue": "",
2828
"replaces": "$AUTHOR$",
29-
"description": "The author."
29+
"description": "The domain name of the author."
30+
},
31+
"CopyrightYear": {
32+
"type": "generated",
33+
"generator": "now",
34+
"replaces": "$COPYRIGHTYEAR$",
35+
"parameters": {
36+
"format": "yyyy"
37+
}
38+
},
39+
"InitialVersionDate": {
40+
"type": "generated",
41+
"generator": "now",
42+
"replaces": "$INITIALVERSIONDATE$",
43+
"parameters": {
44+
"format": "dd/MM/yyyy"
45+
}
46+
},
47+
"AuthorVersionHistory": {
48+
"type": "generated",
49+
"generator": "regex",
50+
"dataType": "string",
51+
"replaces": "$AUTHORVERSIONHISTORY$",
52+
"parameters": {
53+
"source": "Author",
54+
"steps": [
55+
{
56+
"regex": "^SKYLINE2\\\\(.*?)$",
57+
"replacement": "$1"
58+
}
59+
]
60+
}
3061
},
3162
"IGQIOnInit": {
3263
"type": "parameter",

0 commit comments

Comments
 (0)