45
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
2 |
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3 |
<PropertyGroup>
|
|
4 |
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
5 |
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
|
6 |
<ProductVersion>8.0.30703</ProductVersion>
|
|
7 |
<SchemaVersion>2.0</SchemaVersion>
|
|
8 |
<ProjectGuid>{565A7BA0-5CAA-4D5D-820F-D763BF484CD5}</ProjectGuid>
|
|
9 |
<OutputType>Exe</OutputType>
|
|
10 |
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
11 |
<RootNamespace>MCG_CS</RootNamespace>
|
|
12 |
<AssemblyName>MCG-CS</AssemblyName>
|
|
13 |
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
|
14 |
<FileAlignment>512</FileAlignment>
|
|
15 |
</PropertyGroup>
|
|
16 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
|
17 |
<PlatformTarget>x86</PlatformTarget>
|
|
18 |
<DebugSymbols>true</DebugSymbols>
|
|
19 |
<DebugType>full</DebugType>
|
|
20 |
<Optimize>false</Optimize>
|
|
21 |
<OutputPath>bin\Debug\</OutputPath>
|
|
22 |
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
23 |
<ErrorReport>prompt</ErrorReport>
|
|
24 |
<WarningLevel>4</WarningLevel>
|
|
25 |
</PropertyGroup>
|
|
26 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
|
27 |
<PlatformTarget>x86</PlatformTarget>
|
|
28 |
<DebugType>pdbonly</DebugType>
|
|
29 |
<Optimize>true</Optimize>
|
|
30 |
<OutputPath>bin\Release\</OutputPath>
|
|
31 |
<DefineConstants>TRACE</DefineConstants>
|
|
32 |
<ErrorReport>prompt</ErrorReport>
|
|
33 |
<WarningLevel>4</WarningLevel>
|
|
34 |
</PropertyGroup>
|
|
35 |
<ItemGroup>
|
|
36 |
<Reference Include="System" />
|
|
37 |
<Reference Include="System.Data" />
|
|
38 |
<Reference Include="System.Xml" />
|
|
39 |
</ItemGroup>
|
|
40 |
<ItemGroup>
|
|
41 |
<Compile Include="AST.cs" />
|
|
42 |
<Compile Include="CodeGenerator.cs" />
|
|
43 |
<Compile Include="Parser.cs" />
|
|
44 |
<Compile Include="Program.cs" />
|
|
45 |
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
46 |
<Compile Include="Scanner.cs" />
|
|
47 |
</ItemGroup>
|
|
48 |
<ItemGroup>
|
|
49 |
<None Include="Code\Factorial.kcl" />
|
|
50 |
<None Include="Code\Fibonaci.kcl" />
|
|
51 |
<None Include="Code\if-then.kcl" />
|
|
52 |
<None Include="Code\Nested-For.kcl" />
|
|
53 |
<None Include="Code\Factorial2.kcl" />
|
|
54 |
<None Include="Code\Fibonaci3.kcl" />
|
|
55 |
<None Include="Code\Greetings.kcl" />
|
|
56 |
<None Include="Code\if-then2.kcl" />
|
|
57 |
<None Include="Code\for-loop.kcl" />
|
|
58 |
<None Include="Code\Math.kcl" />
|
|
59 |
<None Include="Code\While.kcl" />
|
|
60 |
</ItemGroup>
|
|
61 |
<ItemGroup>
|
|
62 |
<None Include="Code\code.kcl" />
|
|
63 |
</ItemGroup>
|
|
64 |
<ItemGroup />
|
|
65 |
<ItemGroup>
|
|
66 |
<None Include="Code\Nested-For2.kcl" />
|
|
67 |
</ItemGroup>
|
|
68 |
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
69 |
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
70 |
Other similar extension points exist, see Microsoft.Common.targets.
|
|
71 |
<Target Name="BeforeBuild">
|
|
72 |
</Target>
|
|
73 |
<Target Name="AfterBuild">
|
|
74 |
</Target>
|
|
75 |
-->
|
|
76 |
</Project> |