Subversion Repositories gelsvn

Rev

Rev 218 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
218 bj 1
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2
  <PropertyGroup>
3
    <ProjectType>Local</ProjectType>
4
    <ProductVersion><%prversion("8.0.50727")%></ProductVersion>
5
    <SchemaVersion><%schemaversion("2.0")%></SchemaVersion>
6
    <ProjectGuid>{<%guid%>}</ProjectGuid>
7
<%foreach(configurations)%>
8
<%if(forfirst)%>
9
    <Configuration Condition=" '$(Configuration)' == '' "><%configuration%></Configuration>
10
<%endif%>
11
<%endfor%>
12
<%foreach(platforms)%>
13
<%if(forfirst)%>
14
    <Platform Condition=" '$(Platform)' == '' "><%platform%></Platform>
15
<%endif%>
16
<%endfor%>
17
<%if(ico_files)%>
18
<%foreach(ico_files)%>
19
<%if(forfirst)%>
20
    <ApplicationIcon><%ico_file%></ApplicationIcon>
21
<%endif%>
22
<%endfor%>
23
<%endif%>
24
    <AssemblyKeyContainerName>
25
    </AssemblyKeyContainerName>
26
<%if(exename || sharedname || staticname)%>
27
    <AssemblyName><%if(exename)%><%exename%><%else%><%libname_prefix%><%if(sharedname)%><%sharedname%><%else%><%staticname%><%endif%><%endif%></AssemblyName>
28
<%endif%>
29
    <AssemblyOriginatorKeyFile>
30
    </AssemblyOriginatorKeyFile>
31
    <DefaultClientScript>JScript</DefaultClientScript>
32
    <DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout>
33
    <DefaultTargetSchema>IE50</DefaultTargetSchema>
34
    <DelaySign>false</DelaySign>
35
<%if(exename || sharedname || staticname)%>
36
    <OutputType><%if(exename)%><%if(winapp)%>Win<%endif%>Exe<%else%>Library<%endif%></OutputType>
37
<%endif%>
38
    <RootNamespace>
39
    </RootNamespace>
40
    <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
41
    <StartupObject><%startupobject%></StartupObject>
42
    <ReferencePath><%foreach(libpaths)%><%libpath%><%fornotlast(";")%><%endfor%></ReferencePath>
43
    <FileUpgradeFlags>
44
    </FileUpgradeFlags>
45
    <UpgradeBackupLocation>
46
    </UpgradeBackupLocation>
47
  </PropertyGroup>
48
<%foreach(platforms)%>
49
<%foreach(configurations)%>
50
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == '<%configuration%>|<%platform%>' ">
51
<%if(exename || sharedname || staticname)%>
52
    <OutputPath><%if(exename)%><%if(install)%><%install%><%else%>.\<%output_dir%><%endif%><%else%><%if(dllout)%><%dllout%><%else%><%libout%><%endif%>\<%output_dir%><%endif%>\</OutputPath>
53
<%endif%>
54
    <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
55
    <BaseAddress>285212672</BaseAddress>
56
    <CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
57
    <ConfigurationOverrideFile>
58
    </ConfigurationOverrideFile>
59
    <DefineConstants><%foreach(defines common_defines macros)%><%define%><%fornotlast(";")%><%endfor%></DefineConstants>
60
    <DocumentationFile>
61
    </DocumentationFile>
62
    <DebugSymbols><%if(optimize)%>false<%else%>true<%endif%></DebugSymbols>
63
    <FileAlignment>4096</FileAlignment>
64
    <NoStdLib>false</NoStdLib>
65
    <NoWarn>
66
    </NoWarn>
67
    <Optimize><%if(optimize)%>true<%else%>false<%endif%></Optimize>
68
    <RegisterForComInterop>false</RegisterForComInterop>
69
    <RemoveIntegerChecks>false</RemoveIntegerChecks>
70
    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
71
    <WarningLevel>4</WarningLevel>
72
    <DebugType><%if(optimize)%>none<%else%>full<%endif%></DebugType>
73
    <ErrorReport>prompt</ErrorReport>
74
  </PropertyGroup>
75
<%endfor%>
76
<%endfor%>
77
  <ItemGroup>
78
<%foreach(sort(libs))%>
79
    <Reference Include="<%libname_prefix%><%lib%>">
80
      <Name><%libname_prefix%><%lib%></Name>
81
    </Reference>
82
<%endfor%>
83
<%foreach(lib, sort(lit_libs pure_libs))%>
84
    <Reference Include="<%lib%>">
85
      <Name><%lib%></Name>
86
    </Reference>
87
<%endfor%>
88
  </ItemGroup>
89
  <ItemGroup>
90
<%foreach(source_files)%>
91
    <Compile Include="<%source_file%>">
92
      <SubType><%if(flag_overrides(source_file, subtype))%><%flag_overrides(source_file, subtype)%><%else%>Code<%endif%></SubType>
93
    </Compile>
94
<%endfor%>
95
<%foreach(ico_files)%>
96
    <Content Include="<%ico_file%>" />
97
<%endfor%>
98
<%foreach(config_files)%>
99
    <None Include="<%config_file%>" />
100
<%endfor%>
101
<%foreach(documentation_files)%>
102
    <None Include="<%documentation_file%>" />
103
<%endfor%>
104
  </ItemGroup>
105
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
106
  <PropertyGroup>
107
    <PreBuildEvent>
108
    </PreBuildEvent>
109
    <PostBuildEvent>
110
    </PostBuildEvent>
111
  </PropertyGroup>
112
</Project>