Skip to content

Commit d7347ee

Browse files
committed
Added license information
1 parent f25675c commit d7347ee

File tree

6 files changed

+742
-7
lines changed

6 files changed

+742
-7
lines changed

ClassSchedule.Web/Error.aspx.cs

+17-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
1-
using System;
2-
using System.Collections;
3-
using System.Collections.Generic;
1+
/*
2+
This file is part of CtcClassSchedule.
3+
4+
CtcClassSchedule is free software: you can redistribute it and/or modify
5+
it under the terms of the GNU General Public License as published by
6+
the Free Software Foundation, either version 3 of the License, or
7+
(at your option) any later version.
8+
9+
CtcClassSchedule is distributed in the hope that it will be useful,
10+
but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
GNU General Public License for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with CtcClassSchedule. If not, see <http://www.gnu.org/licenses/>.
16+
*/
17+
using System;
418
using System.Data;
519
using System.Data.SqlClient;
620
using System.Linq;

ClassSchedule.Web/Global.asax.cs

+17-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
1-
using System;
2-
using System.Linq;
1+
/*
2+
This file is part of CtcClassSchedule.
3+
4+
CtcClassSchedule is free software: you can redistribute it and/or modify
5+
it under the terms of the GNU General Public License as published by
6+
the Free Software Foundation, either version 3 of the License, or
7+
(at your option) any later version.
8+
9+
CtcClassSchedule is distributed in the hope that it will be useful,
10+
but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
GNU General Public License for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with CtcClassSchedule. If not, see <http://www.gnu.org/licenses/>.
16+
*/
17+
using System;
318
using System.Web.Mvc;
419
using System.Web.Routing;
5-
using MvcMiniProfiler;
620

721
namespace CTCClassSchedule
822
{

ClassSchedule.Web/Properties/AssemblyInfo.cs

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
1-
using System.Reflection;
1+
/*
2+
This file is part of CtcClassSchedule.
3+
4+
CtcClassSchedule is free software: you can redistribute it and/or modify
5+
it under the terms of the GNU General Public License as published by
6+
the Free Software Foundation, either version 3 of the License, or
7+
(at your option) any later version.
8+
9+
CtcClassSchedule is distributed in the hope that it will be useful,
10+
but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
GNU General Public License for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with CtcClassSchedule. If not, see <http://www.gnu.org/licenses/>.
16+
*/
17+
using System.Reflection;
218
using System.Runtime.InteropServices;
319

420
// General Information about an assembly is controlled through the following

ClassSchedule.Web/Web.config

+16
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
This file is part of CtcClassSchedule.
4+
5+
CtcClassSchedule is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
CtcClassSchedule is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU General Public License for more details.
14+
15+
You should have received a copy of the GNU General Public License
16+
along with CtcClassSchedule. If not, see <http://www.gnu.org/licenses/>.
17+
-->
218
<!--
319
For more information on how to configure your ASP.NET application, please visit
420
http://go.microsoft.com/fwlink/?LinkId=152368

ClassSchedule.sln

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
77
.gitignore = .gitignore
88
EXAMPLE-UpdateClassScheduleDataFromProduction.sdc = EXAMPLE-UpdateClassScheduleDataFromProduction.sdc
99
EXAMPLE-UpdateClassScheduleODSDataFromProduction.sdc = EXAMPLE-UpdateClassScheduleODSDataFromProduction.sdc
10+
LICENSE.txt = LICENSE.txt
1011
Local.testsettings = Local.testsettings
1112
README.md = README.md
1213
TraceAndTestImpact.testsettings = TraceAndTestImpact.testsettings

0 commit comments

Comments
 (0)