1 <?xml version="1.0" encoding="utf-8"?> 2 <Project ToolsVersion="12.0" 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 <ProjectGuid>{9DB0B5E7-757E-4BD1-A5F6-279390331254}</ProjectGuid> 7 <OutputType>Exe</OutputType> 8 <AppDesignerFolder>Properties</AppDesignerFolder> 9 <RootNamespace>FlatBuffers.Test</RootNamespace> 10 <AssemblyName>FlatBuffers.Test</AssemblyName> 11 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> 12 <FileAlignment>512</FileAlignment> 13 </PropertyGroup> 14 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 15 <DebugSymbols>true</DebugSymbols> 16 <DebugType>full</DebugType> 17 <Optimize>false</Optimize> 18 <OutputPath>bin\Debug\</OutputPath> 19 <DefineConstants>DEBUG;TRACE</DefineConstants> 20 <ErrorReport>prompt</ErrorReport> 21 <WarningLevel>4</WarningLevel> 22 </PropertyGroup> 23 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 24 <DebugType>pdbonly</DebugType> 25 <Optimize>true</Optimize> 26 <OutputPath>bin\Release\</OutputPath> 27 <DefineConstants>TRACE</DefineConstants> 28 <ErrorReport>prompt</ErrorReport> 29 <WarningLevel>4</WarningLevel> 30 </PropertyGroup> 31 <PropertyGroup> 32 <StartupObject /> 33 </PropertyGroup> 34 <ItemGroup> 35 <Reference Include="System" /> 36 <Reference Include="System.Core"> 37 <RequiredTargetFramework>3.5</RequiredTargetFramework> 38 </Reference> 39 </ItemGroup> 40 <ItemGroup> 41 <Compile Include="..\..\net\FlatBuffers\ByteBuffer.cs"> 42 <Link>FlatBuffers\ByteBuffer.cs</Link> 43 </Compile> 44 <Compile Include="..\..\net\FlatBuffers\IFlatbufferObject.cs"> 45 <Link>FlatBuffers\IFlatbufferObject.cs</Link> 46 </Compile> 47 <Compile Include="..\..\net\FlatBuffers\Offset.cs"> 48 <Link>FlatBuffers\Offset.cs</Link> 49 </Compile> 50 <Compile Include="..\..\net\FlatBuffers\FlatBufferBuilder.cs"> 51 <Link>FlatBuffers\FlatBufferBuilder.cs</Link> 52 </Compile> 53 <Compile Include="..\..\net\FlatBuffers\FlatBufferConstants.cs"> 54 <Link>FlatBuffers\FlatBufferConstants.cs</Link> 55 </Compile> 56 <Compile Include="..\..\net\FlatBuffers\Struct.cs"> 57 <Link>FlatBuffers\Struct.cs</Link> 58 </Compile> 59 <Compile Include="..\..\net\FlatBuffers\Table.cs"> 60 <Link>FlatBuffers\Table.cs</Link> 61 </Compile> 62 <Compile Include="..\MyGame\Example\Any.cs"> 63 <Link>MyGame\Example\Any.cs</Link> 64 </Compile> 65 <Compile Include="..\MyGame\Example\Color.cs"> 66 <Link>MyGame\Example\Color.cs</Link> 67 </Compile> 68 <Compile Include="..\MyGame\Example\Monster.cs"> 69 <Link>MyGame\Example\Monster.cs</Link> 70 </Compile> 71 <Compile Include="..\MyGame\Example\Stat.cs"> 72 <Link>MyGame\Example\Stat.cs</Link> 73 </Compile> 74 <Compile Include="..\MyGame\Example\Test.cs"> 75 <Link>MyGame\Example\Test.cs</Link> 76 </Compile> 77 <Compile Include="..\MyGame\Example\TestSimpleTableWithEnum.cs"> 78 <Link>MyGame\Example\TestSimpleTableWithEnum.cs</Link> 79 </Compile> 80 <Compile Include="..\MyGame\Example\Vec3.cs"> 81 <Link>MyGame\Example\Vec3.cs</Link> 82 </Compile> 83 <Compile Include="..\MyGame\Example\Ability.cs"> 84 <Link>MyGame\Example\Ability.cs</Link> 85 </Compile> 86 <Compile Include="..\MyGame\InParentNamespace.cs"> 87 <Link>MyGame\InParentNamespace.cs</Link> 88 </Compile> 89 <Compile Include="..\namespace_test\NamespaceA\NamespaceB\EnumInNestedNS.cs"> 90 <Link>NamespaceA\NamespaceB\EnumInNestedNS.cs</Link> 91 </Compile> 92 <Compile Include="..\namespace_test\NamespaceA\NamespaceB\StructInNestedNS.cs"> 93 <Link>NamespaceA\NamespaceB\StructInNestedNS.cs</Link> 94 </Compile> 95 <Compile Include="..\namespace_test\NamespaceA\NamespaceB\TableInNestedNS.cs"> 96 <Link>NamespaceA\NamespaceB\TableInNestedNS.cs</Link> 97 </Compile> 98 <Compile Include="..\namespace_test\NamespaceA\TableInFirstNS.cs"> 99 <Link>NamespaceA\TableInFirstNS.cs</Link> 100 </Compile> 101 <Compile Include="Assert.cs" /> 102 <Compile Include="ByteBufferTests.cs" /> 103 <Compile Include="FlatBufferBuilderTests.cs" /> 104 <Compile Include="FlatBuffersFuzzTests.cs" /> 105 <Compile Include="FlatBuffersTestClassAttribute.cs" /> 106 <Compile Include="FlatBuffersTestMethodAttribute.cs" /> 107 <Compile Include="FuzzTestData.cs" /> 108 <Compile Include="Lcg.cs" /> 109 <Compile Include="Program.cs" /> 110 <Compile Include="Properties\AssemblyInfo.cs" /> 111 <Compile Include="FlatBuffersExampleTests.cs" /> 112 <Compile Include="TestTable.cs" /> 113 </ItemGroup> 114 <ItemGroup> 115 <Content Include="..\monsterdata_test.mon"> 116 <Link>Resources\monsterdata_test.mon</Link> 117 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 118 </Content> 119 </ItemGroup> 120 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 121 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 122 Other similar extension points exist, see Microsoft.Common.targets. 123 <Target Name="BeforeBuild"> 124 </Target> 125 <Target Name="AfterBuild"> 126 </Target> 127 --> 128 </Project>