[3] | 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>
|
---|
[5] | 56 | <Compile Include="LoggingTool.cs" />
|
---|
[3] | 57 | <Compile Include="interfaces\TeamUpLogic.cs" />
|
---|
| 58 | <Compile Include="interfaces\ILoggerLogic.cs" />
|
---|
| 59 | <Compile Include="interfaces\TeamUpSpreadsheetOutput.cs" />
|
---|
| 60 | <Compile Include="interfaces\ILoggerOutput.cs" />
|
---|
| 61 | <Compile Include="models\TeamUpEvent.cs" />
|
---|
| 62 | <Compile Include="models\TeamUpQuestionnaire.cs" />
|
---|
| 63 | <Compile Include="models\LoggerMessage.cs" />
|
---|
| 64 | <Compile Include="models\TeamUpSpreadsheetMessage.cs" />
|
---|
| 65 | <Compile Include="TestSpreadsheetOutput.cs" />
|
---|
| 66 | <Compile Include="Properties\AssemblyInfo.cs" />
|
---|
| 67 | </ItemGroup>
|
---|
[5] | 68 | <ItemGroup>
|
---|
| 69 | <ProjectReference Include="..\..\..\UDKTCPLink\UDKTCPLink\UDKTCPLink.csproj">
|
---|
| 70 | <Project>{5FB0E6BA-4999-494D-B6A4-7E884E6B4B6F}</Project>
|
---|
| 71 | <Name>UDKTCPLink</Name>
|
---|
| 72 | </ProjectReference>
|
---|
| 73 | </ItemGroup>
|
---|
[3] | 74 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
---|
| 75 | <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
---|
| 76 | Other similar extension points exist, see Microsoft.Common.targets.
|
---|
| 77 | <Target Name="BeforeBuild">
|
---|
| 78 | </Target>
|
---|
| 79 | <Target Name="AfterBuild">
|
---|
| 80 | </Target>
|
---|
| 81 | -->
|
---|
| 82 | </Project> |
---|