Files
PCK-Studio/PckStudio.Rendering/PckStudio.Rendering.csproj
2026-01-26 03:01:38 +01:00

90 lines
3.8 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>{B1E19D0F-6DD5-4D91-9B45-9818759CA8EF}</ProjectGuid>
<OutputType>Library</OutputType>
<DefineConstants Condition="'$(Configuration)' != 'Debug'">NDEBUG</DefineConstants>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>PckStudio.Rendering</RootNamespace>
<AssemblyName>PckStudio.Rendering</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<LangVersion>12</LangVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</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="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="BoundingBox.cs" />
<Compile Include="Camera\Camera.cs" />
<Compile Include="Camera\PerspectiveCamera.cs" />
<Compile Include="ColorVertex.cs" />
<Compile Include="Cube.cs" />
<Compile Include="CubeMesh.cs" />
<Compile Include="CubeMeshCollection.cs" />
<Compile Include="DrawContext.cs" />
<Compile Include="Extension\SkinBoxExtension.cs" />
<Compile Include="FrameBuffer.cs" />
<Compile Include="GenericMesh.cs" />
<Compile Include="IndexBuffer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Renderer.cs" />
<Compile Include="Shader\ShaderLibrary.cs" />
<Compile Include="Shader\ShaderObject.cs" />
<Compile Include="Shader\ShaderProgram.cs" />
<Compile Include="Shader\ShaderSource.cs" />
<Compile Include="Spherical.cs" />
<Compile Include="TextureChangingEventArgs.cs" />
<Compile Include="TextureVertex.cs" />
<Compile Include="Texture\CubeTexture.cs" />
<Compile Include="Texture\Texture.cs" />
<Compile Include="Texture\Texture2D.cs" />
<Compile Include="VertexArray.cs" />
<Compile Include="VertexBuffer.cs" />
<Compile Include="VertexBufferLayout.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="OpenTK">
<Version>3.3.3</Version>
</PackageReference>
<PackageReference Include="OpenTK.GLControl">
<Version>3.3.3</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PckStudio.Core\PckStudio.Core.csproj">
<Project>{345eabed-f0d1-4d04-b409-babdef747352}</Project>
<Name>PckStudio.Core</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>