12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectGuid>{24FABEA8-9481-4EDB-B0B5-81CB94731690}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>fun.Basics</RootNamespace>
- <AssemblyName>fun.Basics</AssemblyName>
- <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\bin\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="CjClutter.ObjLoader.Loader">
- <HintPath>..\Libs\CjClutter.ObjLoader.Loader.dll</HintPath>
- </Reference>
- <Reference Include="OpenTK">
- <HintPath>..\Libs\OpenTK.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="ColliderBoxElement.cs" />
- <Compile Include="CollidingElement.cs" />
- <Compile Include="ICollider.cs" />
- <Compile Include="PerceiverElement.cs" />
- <Compile Include="InputElement.cs" />
- <Compile Include="PerceivedElement.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="Shapes\Box.cs" />
- <Compile Include="Shapes\Plane.cs" />
- <Compile Include="Shapes\Ray.cs" />
- <Compile Include="Shapes\Sphere.cs" />
- <Compile Include="Shapes\Triangle.cs" />
- <Compile Include="Skripts\MoveActorOnInputScriptElement.cs" />
- <Compile Include="Skripts\RotateActorOnInputScriptElement.cs" />
- <Compile Include="TransformElement.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\fun.Communication\fun.Communication.csproj">
- <Project>{ee80df96-ac24-4204-842b-5e11e10aafe2}</Project>
- <Name>fun.Communication</Name>
- </ProjectReference>
- <ProjectReference Include="..\fun.Core\fun.Core.csproj">
- <Project>{80175f3b-2c0d-4a9e-9944-b69abf3e8006}</Project>
- <Name>fun.Core</Name>
- </ProjectReference>
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- </Project>
|