-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathUmbCodeGen.csproj
More file actions
116 lines (116 loc) · 4.52 KB
/
UmbCodeGen.csproj
File metadata and controls
116 lines (116 loc) · 4.52 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{9916A8F8-35D5-4261-AFD2-6B3D33CD1323}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>UmbCodeGen</RootNamespace>
<AssemblyName>UmbCodeGen</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>
</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="businesslogic">
<HintPath>Binaries\businesslogic.dll</HintPath>
</Reference>
<Reference Include="cms">
<HintPath>Binaries\cms.dll</HintPath>
</Reference>
<Reference Include="interfaces">
<HintPath>Binaries\interfaces.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Data.Linq" />
<Reference Include="System.Web.Extensions" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="umbraco">
<HintPath>Binaries\umbraco.dll</HintPath>
</Reference>
<Reference Include="Umbraco.Core">
<HintPath>Binaries\Umbraco.Core.dll</HintPath>
</Reference>
<Reference Include="umbraco.DataLayer">
<HintPath>Binaries\umbraco.DataLayer.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="CodeGen\CodeGenTools.cs" />
<Compile Include="CodeGen\DynamicHost.cs" />
<Compile Include="CodeGen\DynamicTextTransformation.cs" />
<Compile Include="CodeGen\DataTypeHelper.cs" />
<Compile Include="Models\DataGridTypeItem.cs" />
<Compile Include="Models\DataTypeItem.cs" />
<Compile Include="CodeGen\Naming.cs" />
<Compile Include="CodeGen\NullHost.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Serialization\SerializationHelper.cs" />
<Compile Include="Models\DocumentTypeItem.cs" />
<Compile Include="TypeLib\DataTypeException.cs" />
<Compile Include="TypeLib\DocumentTypeException.cs" />
<Compile Include="TypeLib\DocumentTypeLibrary.cs" />
<Compile Include="Models\PreValueItem.cs" />
<Compile Include="Models\PropertyTypeItem.cs" />
<Compile Include="Models\DocumentTypeLib.cs" />
</ItemGroup>
<ItemGroup>
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
</ItemGroup>
<ItemGroup>
<Folder Include="TT\" />
</ItemGroup>
<ItemGroup>
<Content Include="Binaries\businesslogic.dll" />
<Content Include="Binaries\cms.dll" />
<Content Include="Binaries\EnvDTE.dll" />
<Content Include="Binaries\interfaces.dll" />
<Content Include="Binaries\Umbraco.Core.dll" />
<Content Include="Binaries\umbraco.DataLayer.dll" />
<Content Include="Binaries\umbraco.dll" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
<!-- 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">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>