m4dc4p / mg-todo

A simple language for defining todo lists, using the Mg (or MGrammar) language, from Microsoft's Oslo platform.

This URL has Read+Write access

mg-todo / TodoPlugin / TodoPlugin.csproj
b59eb54d » Justin Bailey 2008-11-06 Got ToDo plugin working 1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <PropertyGroup>
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 <ProductVersion>9.0.30729</ProductVersion>
7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{C84EC929-72CE-4B13-B258-B86527D221D6}</ProjectGuid>
9 <OutputType>Library</OutputType>
10 <AppDesignerFolder>Properties</AppDesignerFolder>
11 <RootNamespace>ToDo</RootNamespace>
12 <AssemblyName>ToDo</AssemblyName>
13 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14 <FileAlignment>512</FileAlignment>
15 <MBinaries32Path Condition="'$(CsaExportPath)'!=''">$(CsaExportPath)\Compilers</MBinaries32Path>
16 <MBinaries32Path Condition="'$(MBinaries32Path)'==''">$(ProgramFiles)\Microsoft Oslo SDK 1.0\Bin</MBinaries32Path>
17 <MGrammarTargetsPath Condition="'$(MGrammarTargetsPath)'==''">$(ProgramFiles)\MsBuild\Microsoft\M\Grammar\v1.0</MGrammarTargetsPath>
18 <MgTarget>Mgx</MgTarget>
19 </PropertyGroup>
20 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21 <DebugSymbols>true</DebugSymbols>
22 <DebugType>full</DebugType>
23 <Optimize>false</Optimize>
87d0d660 » Justin Bailey 2008-11-07 Updates for article 24 <OutputPath>bin\Debug\</OutputPath>
b59eb54d » Justin Bailey 2008-11-06 Got ToDo plugin working 25 <DefineConstants>DEBUG;TRACE</DefineConstants>
26 <ErrorReport>prompt</ErrorReport>
27 <WarningLevel>4</WarningLevel>
28 </PropertyGroup>
29 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30 <DebugType>pdbonly</DebugType>
31 <Optimize>true</Optimize>
32 <OutputPath>bin\Release\</OutputPath>
33 <DefineConstants>TRACE</DefineConstants>
34 <ErrorReport>prompt</ErrorReport>
35 <WarningLevel>4</WarningLevel>
36 </PropertyGroup>
37 <ItemGroup>
38 <Reference Include="PresentationCore">
39 <RequiredTargetFramework>3.0</RequiredTargetFramework>
40 </Reference>
41 <Reference Include="PresentationFramework">
42 <RequiredTargetFramework>3.0</RequiredTargetFramework>
43 </Reference>
44 <Reference Include="PresentationFramework.Aero">
45 <RequiredTargetFramework>3.0</RequiredTargetFramework>
46 </Reference>
47 <Reference Include="System" />
48 <Reference Include="System.Core">
49 <RequiredTargetFramework>3.5</RequiredTargetFramework>
50 </Reference>
51 <Reference Include="WindowsBase">
52 <RequiredTargetFramework>3.0</RequiredTargetFramework>
53 </Reference>
87d0d660 » Justin Bailey 2008-11-07 Updates for article 54 <Reference Include="$(MBinaries32Path)\Intellipad\ComponentModel.dll" />
55 <Reference Include="$(MBinaries32Path)\Intellipad\Microsoft.Intellipad.Framework.dll" />
56 <Reference Include="$(MBinaries32Path)\Intellipad\Microsoft.Intellipad.Core.dll" />
57 <Reference Include="$(MBinaries32Path)\Intellipad\Microsoft.VisualStudio.Platform.Editor.dll" />
58 <Reference Include="$(MBinaries32Path)\Microsoft.M.Grammar.dll" />
b59eb54d » Justin Bailey 2008-11-06 Got ToDo plugin working 59 <Reference Include="$(MBinaries32Path)\System.Dataflow.dll" />
60 <Reference Include="$(MBinaries32Path)\Xaml.dll" />
61 </ItemGroup>
62 <ItemGroup>
63 <Compile Include="Properties\AssemblyInfo.cs" />
64 <Compile Include="ToDoMode.cs" />
65 </ItemGroup>
66 <ItemGroup>
67 <Content Include="ToDoCommands.py">
68 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
69 </Content>
70 </ItemGroup>
71 <ItemGroup>
72 <MgCompile Include="todo4.mg" />
73 </ItemGroup>
a67ad663 » Justin Bailey 2008-11-12 Updates for article. 74 <ItemGroup>
75 <None Include="todo4.todo" />
76 </ItemGroup>
b59eb54d » Justin Bailey 2008-11-06 Got ToDo plugin working 77 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
78 <Import Project="$(MGrammarTargetsPath)\Microsoft.M.Grammar.targets" />
79 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
80 Other similar extension points exist, see Microsoft.Common.targets.
81 <Target Name="BeforeBuild">
82 </Target>
83 <Target Name="AfterBuild">
84 </Target>
85 -->
80f50c62 » Justin Bailey 2008-11-11 Got error reporting working. 86 <PropertyGroup>
0ae038fa » Justin Bailey 2008-11-12 Updates for article 87 <PostBuildEvent>REM xcopy "$(TargetPath)" "C:\Program Files\Microsoft Oslo SDK 1.0\Bin\Intellipad\Components\ToDo" /S /D /I /Y
88 REM xcopy "$(TargetDir)*.py" "C:\Program Files\Microsoft Oslo SDK 1.0\Bin\Intellipad\Components\ToDo" /S /D /I /Y
89 REM xcopy "$(TargetDir)Microsoft.M.Grammar.dll" "C:\Program Files\Microsoft Oslo SDK 1.0\Bin\Intellipad\Components\ToDo" /S /D /I /Y
80f50c62 » Justin Bailey 2008-11-11 Got error reporting working. 90 </PostBuildEvent>
91 </PropertyGroup>
b59eb54d » Justin Bailey 2008-11-06 Got ToDo plugin working 92 </Project>