|
@@ -0,0 +1,81 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
+ <PropertyGroup>
|
|
|
+ <ProjectGuid>{57903A6B-1576-4361-8F03-1D5F038A782A}</ProjectGuid>
|
|
|
+ <ProjectTypeGuids>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
|
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
|
+ <OutputType>Library</OutputType>
|
|
|
+ <AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
+ <RootNamespace>nkast.Aether.Animation</RootNamespace>
|
|
|
+ <AssemblyName>Aether.Animation</AssemblyName>
|
|
|
+ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
|
|
+ <TargetFrameworkProfile>Client</TargetFrameworkProfile>
|
|
|
+ <TargetFrameworkProfile>
|
|
|
+ </TargetFrameworkProfile>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
+ <DebugSymbols>true</DebugSymbols>
|
|
|
+ <DebugType>full</DebugType>
|
|
|
+ <Optimize>false</Optimize>
|
|
|
+ <OutputPath>..\Artifacts\Debug\net4.DX\</OutputPath>
|
|
|
+ <DefineConstants>TRACE;DEBUG;WINDOWS MG MAPPEDMEM</DefineConstants>
|
|
|
+ <ErrorReport>prompt</ErrorReport>
|
|
|
+ <WarningLevel>4</WarningLevel>
|
|
|
+ <Prefer32Bit>false</Prefer32Bit>
|
|
|
+ <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
+ <DebugType>none</DebugType>
|
|
|
+ <Optimize>true</Optimize>
|
|
|
+ <OutputPath>..\Artifacts\Release\net4.DX\</OutputPath>
|
|
|
+ <DefineConstants>TRACE;WINDOWS MG MAPPEDMEM</DefineConstants>
|
|
|
+ <ErrorReport>prompt</ErrorReport>
|
|
|
+ <WarningLevel>4</WarningLevel>
|
|
|
+ <Prefer32Bit>false</Prefer32Bit>
|
|
|
+ <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
+ </PropertyGroup>
|
|
|
+ <ItemGroup>
|
|
|
+ <Reference Include="System" />
|
|
|
+ <Reference Include="System.Core" />
|
|
|
+ <Reference Include="mscorlib" />
|
|
|
+ <PackageReference Include="MonoGame.Framework.Portable.9000" Version="3.8.9101">
|
|
|
+ <PrivateAssets>all</PrivateAssets>
|
|
|
+ <ExcludeAssets>runtime</ExcludeAssets>
|
|
|
+ </PackageReference>
|
|
|
+ <PackageReference Include="SharpDX" Version="4.0.1.0">
|
|
|
+ <PrivateAssets>all</PrivateAssets>
|
|
|
+ <ExcludeAssets>runtime</ExcludeAssets>
|
|
|
+ </PackageReference>
|
|
|
+ <PackageReference Include="SharpDX.Direct3D11" Version="4.0.1.0">
|
|
|
+ <PrivateAssets>all</PrivateAssets>
|
|
|
+ <ExcludeAssets>runtime</ExcludeAssets>
|
|
|
+ </PackageReference>
|
|
|
+ <PackageReference Include="SharpDX.DXGI" Version="4.0.1.0">
|
|
|
+ <PrivateAssets>all</PrivateAssets>
|
|
|
+ <ExcludeAssets>runtime</ExcludeAssets>
|
|
|
+ </PackageReference>
|
|
|
+ </ItemGroup>
|
|
|
+ <ItemGroup>
|
|
|
+ <Compile Include="Animation\Animations.cs" />
|
|
|
+ <Compile Include="Animation\Clip.cs" />
|
|
|
+ <Compile Include="Animation\CpuAnimatedVertexBuffer.Unsafe.cs" />
|
|
|
+ <Compile Include="Animation\Extensions.cs" />
|
|
|
+ <Compile Include="Animation\Keyframe.cs" />
|
|
|
+ <Compile Include="ContentReaders\AnimationsReader.cs" />
|
|
|
+ <Compile Include="ContentReaders\ClipReader.cs" />
|
|
|
+ <Compile Include="ContentReaders\CpuAnimatedVertexBufferReader.cs" />
|
|
|
+ <Compile Include="Graphics\VertexTypes\VertexIndicesWeightsPositionNormal.cs" />
|
|
|
+ </ItemGroup>
|
|
|
+ <ItemGroup>
|
|
|
+ <Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
+ </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>
|