Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Michel Perraud <jean-michel.perraud@csiro.au>2013-01-13 12:52:33 +0400
committerJean-Michel Perraud <jean-michel.perraud@csiro.au>2013-01-13 12:52:33 +0400
commit9c01a8335f57cee9c6fc8a9e280874fc38b0966b (patch)
treedb84b61aea2388194219b7f1bb43c612841d289a /msvc/scripts/csproj.tmpl
parent3796c282fe87b62a180ec620dc67e9e375b7094b (diff)
FIX: doubling up on curly braces around GUIDs in the solution files
Ongoing work to handle the PrebuiltSystem alias and to figure out what to do where no prior matching assembly name exists
Diffstat (limited to 'msvc/scripts/csproj.tmpl')
-rw-r--r--msvc/scripts/csproj.tmpl22
1 files changed, 11 insertions, 11 deletions
diff --git a/msvc/scripts/csproj.tmpl b/msvc/scripts/csproj.tmpl
index 20f27f5005c..5169cdc9741 100644
--- a/msvc/scripts/csproj.tmpl
+++ b/msvc/scripts/csproj.tmpl
@@ -13,7 +13,8 @@
@NOCONFIG@
@ALLOWUNSAFE@
<AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace></RootNamespace>
+ <RootNamespace>
+ </RootNamespace>
<AssemblyName>@ASSEMBLYNAME@</AssemblyName>
<TargetFrameworkVersion>v@FX_VERSION</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
@@ -26,7 +27,6 @@
<DefineConstants>DEBUG;TRACE;@DEFINECONSTANTS@</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- @ADDITIONALLIBPATHS@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
@@ -35,7 +35,6 @@
<DefineConstants>@DEFINECONSTANTS@</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- @ADDITIONALLIBPATHS@
</PropertyGroup>
<!-- Set AddAdditionalExplicitAssemblyReferences to false, otherwise if targetting .NET4.0,
Microsoft.NETFramework.props will force a dependency on the assembly System.Core. This
@@ -45,8 +44,7 @@
</PropertyGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<ItemGroup>
- @SOURCES@
- </ItemGroup>
+@SOURCES@ </ItemGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
@@ -55,14 +53,16 @@
</Target>
-->
<PropertyGroup>
- <PreBuildEvent>@PREBUILD@</PreBuildEvent>
- <PostBuildEvent>@POSTBUILD@</PostBuildEvent>
+ <PreBuildEvent>
+@PREBUILD@
+ </PreBuildEvent>
+ <PostBuildEvent>
+@POSTBUILD@
+ </PostBuildEvent>
</PropertyGroup>
<ItemGroup>
- @REFERENCES@
- </ItemGroup>
+@REFERENCES@ </ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
- @RESOURCES@
-</Project>
+@RESOURCES@</Project> \ No newline at end of file