source: Dev/LoggingTool/LoggingTool.csproj @ 4

Last change on this file since 4 was 4, checked in by jkraaijeveld, 14 years ago

Preliminary work in a general logging tool

File size: 3.6 KB
Line 
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>{B5F52C17-DB39-47A9-8A4A-31FB4DE899EA}</ProjectGuid>
9    <OutputType>Exe</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>LoggingTool</RootNamespace>
12    <AssemblyName>LoggingTool</AssemblyName>
13    <TargetFrameworkVersion>v3.5</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="Google.GData.Client, Version=1.6.0.0, Culture=neutral, PublicKeyToken=04a59ca9b0273830, processorArchitecture=MSIL">
37      <SpecificVersion>False</SpecificVersion>
38      <HintPath>..\GoogleData\Samples\Google.GData.Client.dll</HintPath>
39    </Reference>
40    <Reference Include="Google.GData.Extensions, Version=1.6.0.0, Culture=neutral, PublicKeyToken=0b4c5df2ebf20876, processorArchitecture=MSIL">
41      <SpecificVersion>False</SpecificVersion>
42      <HintPath>..\GoogleData\Samples\Google.GData.Extensions.dll</HintPath>
43    </Reference>
44    <Reference Include="Google.GData.Spreadsheets, Version=1.6.0.0, Culture=neutral, PublicKeyToken=3f77feb76ff0d9a1, processorArchitecture=MSIL">
45      <SpecificVersion>False</SpecificVersion>
46      <HintPath>..\GoogleData\Samples\Google.GData.Spreadsheets.dll</HintPath>
47    </Reference>
48    <Reference Include="System" />
49    <Reference Include="System.Core" />
50    <Reference Include="System.Xml.Linq" />
51    <Reference Include="System.Data.DataSetExtensions" />
52    <Reference Include="System.Data" />
53    <Reference Include="System.Xml" />
54  </ItemGroup>
55  <ItemGroup>
56    <Compile Include="interfaces\TeamUpLogic.cs" />
57    <Compile Include="interfaces\ILoggerLogic.cs" />
58    <Compile Include="interfaces\TeamUpSpreadsheetOutput.cs" />
59    <Compile Include="interfaces\ILoggerOutput.cs" />
60    <Compile Include="models\TeamUpEvent.cs" />
61    <Compile Include="models\TeamUpQuestionnaire.cs" />
62    <Compile Include="models\LoggerMessage.cs" />
63    <Compile Include="models\TeamUpSpreadsheetMessage.cs" />
64    <Compile Include="TestSpreadsheetOutput.cs" />
65    <Compile Include="Properties\AssemblyInfo.cs" />
66  </ItemGroup>
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>
Note: See TracBrowser for help on using the repository browser.