Subversion Repositories gelsvn

Rev

Rev 107 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
107 bj 1
<VisualStudioProject>
2
    <CSHARP
3
        ProjectType = "Local"
4
        ProductVersion = "<%prversion("7.10.3077")%>"
5
        SchemaVersion = "<%schemaversion("2.0)%>"
6
        ProjectGuid = "{<%guid%>}"
7
<%if(scc)%>
8
        SccProjectName = "<%scc%>"
9
        SccLocalPath = "<%scc%>"
10
        SccAuxPath = "<%scc%>"
11
        SccProvider = "<%scc%>"
12
<%endif%>
13
    >
14
        <Build>
15
            <Settings
16
<%if(ico_files)%>
17
<%foreach(ico_files)%>
18
<%if(forfirst)%>
19
                ApplicationIcon = "<%ico_file%>"
20
<%endif%>
21
<%endfor%>
22
<%else%>
23
                ApplicationIcon = ""
24
<%endif%>
25
                AssemblyKeyContainerName = ""
26
<%if(exename || sharedname || staticname)%>
198 bj 27
                AssemblyName = "<%if(exename)%><%exename%><%else%><%libname_prefix%><%if(sharedname)%><%sharedname%><%else%><%staticname%><%endif%>"
107 bj 28
<%endif%>
29
                AssemblyOriginatorKeyFile = ""
30
                DefaultClientScript = "JScript"
31
                DefaultHTMLPageLayout = "Grid"
32
                DefaultTargetSchema = "IE50"
33
                DelaySign = "false"
34
<%if(exename || sharedname || staticname)%>
35
                OutputType = "<%if(exename)%><%if(winapp)%>Win<%endif%>Exe<%else%>Library<%endif%>"
36
<%endif%>
37
                PreBuildEvent = ""
38
                PostBuildEvent = "<%if(postbuild)%><%eval(postbuild)%><%endif%>"
39
                RootNamespace = ""
40
                RunPostBuildEvent = "OnBuildSuccess"
41
                StartupObject = "<%startupobject%>"
42
            >
43
<%foreach(configurations)%>
44
                <Config
45
                   Name = "<%configuration%>"
46
                   AllowUnsafeBlocks = "false"
47
                   BaseAddress = "285212672"
48
                   CheckForOverflowUnderflow = "false"
49
                   ConfigurationOverrideFile = ""
50
                   DefineConstants = "<%foreach(defines common_defines macros)%><%define%><%fornotlast(";")%><%endfor%>"
51
                   DocumentationFile = ""
52
                   DebugSymbols = "<%if(optimize)%>false<%else%>true<%endif%>"
53
                   FileAlignment = "4096"
54
                   IncrementalBuild = "<%incremental("false")%>"
55
                   NoStdLib = "false"
56
                   NoWarn = ""
57
                   Optimize = "<%if(optimize)%>true<%else%>false<%endif%>"
58
<%if(exename || sharedname || staticname)%>
59
                   OutputPath = "<%if(exename)%><%if(install)%><%install%><%else%>.<%endif%><%else%><%if(dllout)%><%dllout%><%else%><%libout%><%endif%><%endif%>\<%output_dir%>\"
60
<%endif%>
61
                   RegisterForComInterop = "false"
62
                   RemoveIntegerChecks = "false"
63
                   TreatWarningsAsErrors = "false"
64
                   WarningLevel = "4"
65
                />
66
<%endfor%>
67
            </Settings>
68
            <References>
198 bj 69
<%foreach(libs)%>
107 bj 70
                <Reference
198 bj 71
                    Name = "<%libname_prefix%><%lib%>"
72
                    AssemblyName = "<%libname_prefix%><%lib%>"
73
                />
74
<%endfor%>
75
<%foreach(lib, lit_libs pure_libs)%>
76
                <Reference
107 bj 77
                    Name = "<%lib%>"
78
                    AssemblyName = "<%lib%>"
79
                />
80
<%endfor%>
81
            <!-- MPC ADD REFERENCES -->
82
            </References>
83
        </Build>
84
        <Files>
85
            <Include>
86
<%foreach(source_files)%>
87
                        <File
88
                                RelPath = "<%source_file%>"
89
                                SubType = "<%if(flag_overrides(source_file, subtype))%><%flag_overrides(source_file, subtype)%><%else%>Code<%endif%>"
90
                                BuildAction = "Compile"
91
                        />
92
<%endfor%>
93
<%foreach(resx_files)%>
94
                        <File
95
                                RelPath = "<%resx_file%>"
96
                                DependentUpon = "<%noextension(resx_file)%>.cs"
97
                                BuildAction = "EmbeddedResource"
98
                        />
99
<%endfor%>
100
<%foreach(custom_types)%>
101
<%foreach(custom_type->input_files)%>
102
<%if(custom_type->input_file->output_files)%>
103
                        <File
104
                                RelPath = "<%custom_type->input_file%>"
105
                                BuildAction = "Compile"
198 bj 106
                                Generator = "<%if(custom_type->libpath)%>PATH=%PATH%;<%custom_type->libpath%>&#x0D;&#x0A;<%endif%><%if(flag_overrides(custom_type->input_file, gendir))%>if not exist <%flag_overrides(custom_type->input_file, gendir)%> mkdir <%flag_overrides(custom_type->input_file, gendir)%>&#x0D;&#x0A;<%endif%><%if(flag_overrides(custom_type->input_file, command))%><%flag_overrides(custom_type->input_file, command)%><%else%><%custom_type->command%><%endif%> <%if(flag_overrides(custom_type->input_file, commandflags))%><%flag_overrides(custom_type->input_file, commandflags)%><%else%><%custom_type->commandflags%><%endif%><%if(custom_type->output_option)%> <%custom_type->output_option%> <%if(flag_overrides(custom_type->input_file, gendir))%><%flag_overrides(custom_type->input_file, gendir)%>\<%basename(custom_type->input_file->output_files)%><%else%><%custom_type->input_file->output_files%><%endif%><%endif%> <%custom_type->input_file%><%if(flag_overrides(custom_type->input_file, postcommand))%><%foreach(custom_type->input_file)%>&#x0D;&#x0A;<%flag_overrides(custom_type->input_file, postcommand)%><%endfor%><%else%><%if(custom_type->postcommand)%><%foreach(custom_type->input_file)%>&#x0D;&#x0A;<%custom_type->postcommand%><%endfor%><%endif%><%endif%>"
107 bj 107
                        />
108
<%endif%>
109
<%endfor%>
110
<%endfor%>
111
<%foreach(ico_files)%>
112
                        <File
113
                                RelPath = "<%ico_file%>"
114
                                BuildAction = "Content"
115
                        />
116
<%endfor%>
117
<%foreach(config_files)%>
118
                        <File
119
                                RelPath = "<%config_file%>"
120
                                BuildAction = "None"
121
                        />
122
<%endfor%>
123
<%foreach(documentation_files)%>
124
                        <File
125
                                RelPath = "<%documentation_file%>"
126
                                BuildAction = "None"
127
                        />
128
<%endfor%>
129
            </Include>
130
        </Files>
131
    </CSHARP>
132
</VisualStudioProject>