JuicyGraphics/src/JuicyGraphics.csproj

124 lines
5.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" 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>{16C2014C-E12A-4497-88D7-7DD4897716ED}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>JuicyGraphics</RootNamespace>
<AssemblyName>JuicyGraphics</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Numerics" />
<Reference Include="System.Numerics.Vectors" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="SharpGL\Matrix.cs" />
<Compile Include="JuicyGraphics\renderer\camera2D.cs" />
<Compile Include="JuicyGraphics\renderer\iGraphicalObject.cs" />
<Compile Include="JuicyGraphics\renderer\line.cs" />
<Compile Include="JuicyGraphics\renderer\renderCam.cs" />
<Compile Include="JuicyGraphics\ui\canvas.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="JuicyGraphics\ui\Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="JuicyGraphics\ui\Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="JuicyGraphics\Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SharpGL\DIBSection.cs" />
<Compile Include="SharpGL\Enumerations\OpenGLEnumerations.cs" />
<Compile Include="SharpGL\FontBitmaps.cs" />
<Compile Include="SharpGL\FontOutlines.cs" />
<Compile Include="SharpGL\OpenGL.cs" />
<Compile Include="SharpGL\OpenGLExtensions.cs" />
<Compile Include="SharpGL\RenderContextProviders\DIBSectionRenderContextProvider.cs" />
<Compile Include="SharpGL\RenderContextProviders\ExternalRenderContextProvider.cs" />
<Compile Include="SharpGL\RenderContextProviders\FBORenderContextProvider.cs" />
<Compile Include="SharpGL\RenderContextProviders\HiddenWindowRenderContextProvider.cs" />
<Compile Include="SharpGL\RenderContextProviders\IRenderContextProvider.cs" />
<Compile Include="SharpGL\RenderContextProviders\NativeWindowRenderContextProvider.cs" />
<Compile Include="SharpGL\RenderContextProviders\RenderContextProvider.cs" />
<Compile Include="SharpGL\RenderContextType.cs" />
<Compile Include="SharpGL\Shaders\Shader.cs" />
<Compile Include="SharpGL\Shaders\ShaderCompilationException.cs" />
<Compile Include="SharpGL\Shaders\ShaderProgram.cs" />
<Compile Include="SharpGL\Tesselators\Delegates.cs" />
<Compile Include="SharpGL\Version\OpenGLVersion.cs" />
<Compile Include="SharpGL\Version\VersionAttribute.cs" />
<Compile Include="SharpGL\VertexBuffers\IndexBuffer.cs" />
<Compile Include="SharpGL\VertexBuffers\VertexBuffer.cs" />
<Compile Include="SharpGL\VertexBuffers\VertexBufferArray.cs" />
<Compile Include="SharpGL\Win32.cs" />
<EmbeddedResource Include="JuicyGraphics\ui\Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Folder Include="JuicyGraphics\math\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>