Subversion Repositories gelsvn

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
107 bj 1
<VisualStudioProject>
2
    <VisualBasic
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)%>
27
                AssemblyName = "<%if(exename)%><%exename%><%else%><%if(sharedname)%><%sharedname%><%else%><%staticname%><%endif%><%endif%>"
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
                OutputCompare = "Binary"
38
                OptionExplicit = "On"
39
                OptionStrict = "Off"
40
                RootNamespace = ""
41
                StartupObject = "<%startupobject%>"
42
            >
43
<%foreach(configurations)%>
44
                <Config
45
                   Name = "<%configuration%>"
46
                   BaseAddress = "285212672"
47
                   ConfigurationOverrideFile = ""
48
                   DefineConstants = "<%foreach(defines common_defines macros)%><%define%><%fornotlast(";")%><%endfor%>"
49
                   DefineDebug = "<%if(optimize)%>false<%else%>true<%endif%>"
50
                   DefineTrace = "<%trace("true")%>"
51
                   DefineSymbols = "<%if(optimize)%>false<%else%>true<%endif%>"
52
                   IncrementalBuild = "<%incremental("false")%>"
53
                   Optimize = "<%if(optimize)%>true<%else%>false<%endif%>"
54
<%if(exename || sharedname || staticname)%>
55
                   OutputPath = "<%if(exename)%><%if(install)%><%install%><%else%>.<%endif%><%else%><%if(dllout)%><%dllout%><%else%><%libout%><%endif%><%endif%>\<%output_dir%>\"
56
<%endif%>
57
                   RegisterForComInterop = "false"
58
                   RemoveIntegerChecks = "false"
59
                   TreatWarningsAsErrors = "false"
60
                   WarningLevel = "1"
61
                />
62
<%endfor%>
63
            </Settings>
64
            <References>
65
<%foreach(libs lit_libs pure_libs)%>
66
                <Reference
67
                    Name = "<%lib%>"
68
                    AssemblyName = "<%lib%>"
69
                />
70
<%endfor%>
71
            <!-- MPC ADD REFERENCES -->
72
            </References>
73
        </Build>
74
        <Files>
75
            <Include>
76
<%foreach(source_files)%>
77
                        <File
78
                                RelPath = "<%source_file%>"
79
                                SubType = "<%if(flag_overrides(source_file, subtype))%><%flag_overrides(source_file, subtype)%><%else%>Code<%endif%>"
80
                                BuildAction = "Compile"
81
                        />
82
<%endfor%>
83
<%foreach(resx_files)%>
84
                        <File
85
                                RelPath = "<%resx_file%>"
86
                                DependentUpon = "<%noextension(resx_file)%>.cs"
87
                                BuildAction = "EmbeddedResource"
88
                        />
89
<%endfor%>
90
<%foreach(custom_types)%>
91
<%foreach(custom_type->input_files)%>
92
<%if(custom_type->input_file->output_files)%>
93
                        <File
94
                                RelPath = "<%custom_type->input_file%>"
95
                                BuildAction = "Compile"
96
                                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%> <%custom_type->input_file%><%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%><%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%>"
97
                        />
98
<%endif%>
99
<%endfor%>
100
<%endfor%>
101
<%foreach(ico_files)%>
102
                        <File
103
                                RelPath = "<%ico_file%>"
104
                                BuildAction = "Content"
105
                        />
106
<%endfor%>
107
<%foreach(config_files)%>
108
                        <File
109
                                RelPath = "<%config_file%>"
110
                                BuildAction = "None"
111
                        />
112
<%endfor%>
113
<%foreach(documentation_files)%>
114
                        <File
115
                                RelPath = "<%documentation_file%>"
116
                                BuildAction = "None"
117
                        />
118
<%endfor%>
119
            </Include>
120
        </Files>
121
    </VisualBasic>
122
</VisualStudioProject>