-
Notifications
You must be signed in to change notification settings - Fork 1
/
Diesel.csproj
123 lines (123 loc) · 6.05 KB
/
Diesel.csproj
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{199CBCF0-8F94-477B-AC53-31381D6617B2}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Diesel</RootNamespace>
<AssemblyName>Diesel</AssemblyName>
<TargetFrameworkVersion>v4.5</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>
<ItemGroup>
<Reference Include="Sprache">
<HintPath>..\packages\Sprache.1.10.0.28\lib\net40\Sprache.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="CodeGeneration\ApplicationServiceGenerator.cs" />
<Compile Include="CodeGeneration\CodeDomCompiler.cs" />
<Compile Include="CodeGeneration\TypeNameMapper.cs" />
<Compile Include="CodeGeneration\CommandGenerator.cs" />
<Compile Include="CodeGeneration\DomainEventGenerator.cs" />
<Compile Include="CodeGeneration\DtoGenerator.cs" />
<Compile Include="CodeGeneration\EnumGenerator.cs" />
<Compile Include="CodeGeneration\EqualityMethodsGenerator.cs" />
<Compile Include="CodeGeneration\ExpressionBuilder.cs" />
<Compile Include="CodeGeneration\MemberTypeMapper.cs" />
<Compile Include="CodeGeneration\ReadOnlyProperty.cs" />
<Compile Include="CodeGeneration\SystemTypeMapper.cs" />
<Compile Include="CodeGeneration\ValueObjectSpecification.cs" />
<Compile Include="CodeGeneration\ValueTypeGenerator.cs" />
<Compile Include="Parsing\AbstractSyntaxTree.cs" />
<Compile Include="Parsing\ApplicationServiceDeclaration.cs" />
<Compile Include="Parsing\CommandConventions.cs" />
<Compile Include="Parsing\CSharp\ArrayType.cs" />
<Compile Include="Parsing\ConventionsDeclaration.cs" />
<Compile Include="Parsing\CSharp\CSharpGrammar.cs" />
<Compile Include="Parsing\CSharp\Identifier.cs" />
<Compile Include="Parsing\CSharp\ITypeNodeVisitor.cs" />
<Compile Include="Parsing\CSharp\NullableType.cs" />
<Compile Include="Parsing\CSharp\RankSpecifier.cs" />
<Compile Include="Parsing\CSharp\RankSpecifiers.cs" />
<Compile Include="Parsing\CSharp\ReferenceType.cs" />
<Compile Include="Parsing\CSharp\SimpleType.cs" />
<Compile Include="Parsing\CSharp\StringReferenceType.cs" />
<Compile Include="Parsing\CSharp\IStructType.cs" />
<Compile Include="Parsing\CSharp\ITypeNode.cs" />
<Compile Include="Parsing\CSharp\IValueTypeNode.cs" />
<Compile Include="Parsing\DomainEventConventions.cs" />
<Compile Include="Parsing\DomainEventDeclaration.cs" />
<Compile Include="Parsing\DtoDeclaration.cs" />
<Compile Include="Parsing\EnumDeclaration.cs" />
<Compile Include="Parsing\IConventionsNode.cs" />
<Compile Include="Parsing\IDieselExpression.cs" />
<Compile Include="Parsing\ITreeNode.cs" />
<Compile Include="Parsing\IDieselExpressionVisitor.cs" />
<Compile Include="Parsing\ITypeDeclarationVisitor.cs" />
<Compile Include="Parsing\Keyword.cs" />
<Compile Include="Parsing\CSharp\NamespaceName.cs" />
<Compile Include="Parsing\BaseTypes.cs" />
<Compile Include="Parsing\Symbol.cs" />
<Compile Include="Parsing\Terminal.cs" />
<Compile Include="Parsing\TokenGrammar.cs" />
<Compile Include="Parsing\CSharp\TypeName.cs" />
<Compile Include="Transformations\ApplyDefaults.cs" />
<Compile Include="Parsing\CommandDeclaration.cs" />
<Compile Include="DieselCompiler.cs" />
<Compile Include="Parsing\Grammar.cs" />
<Compile Include="Parsing\ITypeDeclaration.cs" />
<Compile Include="Transformations\FullyQualifiedNameRule.cs" />
<Compile Include="Transformations\KnownType.cs" />
<Compile Include="Transformations\KnownTypesHarvester.cs" />
<Compile Include="Transformations\ModelTransformation.cs" />
<Compile Include="Transformations\ModelTransformations.cs" />
<Compile Include="Parsing\Namespace.cs" />
<Compile Include="Parsing\PropertyDeclaration.cs" />
<Compile Include="Parsing\ValueTypeDeclaration.cs" />
<Compile Include="CodeGeneration\CodeDomGenerator.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Transformations\SemanticModel.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Diesel.nuspec" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- 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>