diff options
Diffstat (limited to 'Prebuild/src/Core/Targets/VS2002Target.cs')
-rw-r--r-- | Prebuild/src/Core/Targets/VS2002Target.cs | 114 |
1 files changed, 57 insertions, 57 deletions
diff --git a/Prebuild/src/Core/Targets/VS2002Target.cs b/Prebuild/src/Core/Targets/VS2002Target.cs index 2292624..d7f6dd1 100644 --- a/Prebuild/src/Core/Targets/VS2002Target.cs +++ b/Prebuild/src/Core/Targets/VS2002Target.cs | |||
@@ -5,16 +5,16 @@ Copyright (c) 2004-2005 Matthew Holmes (matthew@wildfiregames.com), Dan Moorehea | |||
5 | Redistribution and use in source and binary forms, with or without modification, are permitted | 5 | Redistribution and use in source and binary forms, with or without modification, are permitted |
6 | provided that the following conditions are met: | 6 | provided that the following conditions are met: |
7 | 7 | ||
8 | * Redistributions of source code must retain the above copyright notice, this list of conditions | 8 | * Redistributions of source code must retain the above copyright notice, this list of conditions |
9 | and the following disclaimer. | 9 | and the following disclaimer. |
10 | * Redistributions in binary form must reproduce the above copyright notice, this list of conditions | 10 | * Redistributions in binary form must reproduce the above copyright notice, this list of conditions |
11 | and the following disclaimer in the documentation and/or other materials provided with the | 11 | and the following disclaimer in the documentation and/or other materials provided with the |
12 | distribution. | 12 | distribution. |
13 | * The name of the author may not be used to endorse or promote products derived from this software | 13 | * The name of the author may not be used to endorse or promote products derived from this software |
14 | without specific prior written permission. | 14 | without specific prior written permission. |
15 | 15 | ||
16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, | 16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, |
17 | BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 17 | BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
18 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 18 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
19 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 19 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
20 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 20 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
@@ -29,59 +29,59 @@ using Prebuild.Core.Attributes; | |||
29 | 29 | ||
30 | namespace Prebuild.Core.Targets | 30 | namespace Prebuild.Core.Targets |
31 | { | 31 | { |
32 | /// <summary> | 32 | /// <summary> |
33 | /// | 33 | /// |
34 | /// </summary> | 34 | /// </summary> |
35 | [Target("vs2002")] | 35 | [Target("vs2002")] |
36 | public class VS2002Target : VS2003Target | 36 | public class VS2002Target : VS2003Target |
37 | { | 37 | { |
38 | #region Private Methods | 38 | #region Private Methods |
39 | 39 | ||
40 | private void SetVS2002() | 40 | private void SetVS2002() |
41 | { | 41 | { |
42 | this.SolutionVersion = "7.00"; | 42 | this.SolutionVersion = "7.00"; |
43 | this.ProductVersion = "7.0.9254"; | 43 | this.ProductVersion = "7.0.9254"; |
44 | this.SchemaVersion = "1.0"; | 44 | this.SchemaVersion = "1.0"; |
45 | this.VersionName = "2002"; | 45 | this.VersionName = "2002"; |
46 | this.Version = VSVersion.VS70; | 46 | this.Version = VSVersion.VS70; |
47 | } | 47 | } |
48 | 48 | ||
49 | #endregion | 49 | #endregion |
50 | 50 | ||
51 | #region Public Methods | 51 | #region Public Methods |
52 | 52 | ||
53 | /// <summary> | 53 | /// <summary> |
54 | /// Writes the specified kern. | 54 | /// Writes the specified kern. |
55 | /// </summary> | 55 | /// </summary> |
56 | /// <param name="kern">The kern.</param> | 56 | /// <param name="kern">The kern.</param> |
57 | public override void Write(Kernel kern) | 57 | public override void Write(Kernel kern) |
58 | { | 58 | { |
59 | SetVS2002(); | 59 | SetVS2002(); |
60 | base.Write(kern); | 60 | base.Write(kern); |
61 | } | 61 | } |
62 | 62 | ||
63 | /// <summary> | 63 | /// <summary> |
64 | /// Cleans the specified kern. | 64 | /// Cleans the specified kern. |
65 | /// </summary> | 65 | /// </summary> |
66 | /// <param name="kern">The kern.</param> | 66 | /// <param name="kern">The kern.</param> |
67 | public override void Clean(Kernel kern) | 67 | public override void Clean(Kernel kern) |
68 | { | 68 | { |
69 | SetVS2002(); | 69 | SetVS2002(); |
70 | base.Clean(kern); | 70 | base.Clean(kern); |
71 | } | 71 | } |
72 | 72 | ||
73 | /// <summary> | 73 | /// <summary> |
74 | /// Gets the name. | 74 | /// Gets the name. |
75 | /// </summary> | 75 | /// </summary> |
76 | /// <value>The name.</value> | 76 | /// <value>The name.</value> |
77 | public override string Name | 77 | public override string Name |
78 | { | 78 | { |
79 | get | 79 | get |
80 | { | 80 | { |
81 | return "vs2002"; | 81 | return "vs2002"; |
82 | } | 82 | } |
83 | } | 83 | } |
84 | 84 | ||
85 | #endregion | 85 | #endregion |
86 | } | 86 | } |
87 | } | 87 | } |