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