core.csproj 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProjectGuid>{E591C9C0-C1CF-43F3-92C1-7E9F3B3602B9}</ProjectGuid>
  7. <OutputType>Library</OutputType>
  8. <RootNamespace>core</RootNamespace>
  9. <AssemblyName>core</AssemblyName>
  10. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  13. <DebugSymbols>true</DebugSymbols>
  14. <DebugType>full</DebugType>
  15. <Optimize>false</Optimize>
  16. <OutputPath>bin\Debug</OutputPath>
  17. <DefineConstants>DEBUG;</DefineConstants>
  18. <ErrorReport>prompt</ErrorReport>
  19. <WarningLevel>4</WarningLevel>
  20. <ConsolePause>false</ConsolePause>
  21. <PlatformTarget>x64</PlatformTarget>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  24. <Optimize>true</Optimize>
  25. <OutputPath>bin\Release</OutputPath>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. <ConsolePause>false</ConsolePause>
  29. <PlatformTarget>x64</PlatformTarget>
  30. </PropertyGroup>
  31. <ItemGroup>
  32. <Reference Include="System" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <Compile Include="Properties\AssemblyInfo.cs" />
  36. <Compile Include="json\JSON.cs" />
  37. <Compile Include="json\SJSON.cs" />
  38. <Compile Include="math\Vector2.cs" />
  39. <Compile Include="math\Vector3.cs" />
  40. </ItemGroup>
  41. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  42. <ItemGroup>
  43. <Folder Include="json\" />
  44. <Folder Include="math\" />
  45. </ItemGroup>
  46. </Project>