-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathValueAnimation.csproj
69 lines (69 loc) · 3.33 KB
/
ValueAnimation.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<ProjectGuid>{A4EEA9CB-5176-43BA-84E5-C7B9D809D8FC}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>BrainbeanApps.ValueAnimation</RootNamespace>
<AssemblyName>ValueAnimation</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile>Profile136</TargetFrameworkProfile>
<ReleaseVersion>1.0.0</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<DocumentationFile>bin\Release\ValueAnimation.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="IValueAnimator.cs" />
<Compile Include="ValueAnimations.cs" />
<Compile Include="IValueAnimationT.cs" />
<Compile Include="ValueAnimationT.cs" />
<Compile Include="ValueOperations.cs" />
<Compile Include="IValueOperationsT.cs" />
<Compile Include="Int32ValueOperations.cs" />
<Compile Include="SingleValueOperations.cs" />
<Compile Include="LinearAnimationT.cs" />
<Compile Include="EaseInPoweredAnimationT.cs" />
<Compile Include="EaseOutPoweredAnimationT.cs" />
<Compile Include="EaseInCircularAnimationT.cs" />
<Compile Include="EaseOutCircularAnimationT.cs" />
<Compile Include="EaseInSinusoidalAnimationT.cs" />
<Compile Include="EaseOutSinusoidalAnimationT.cs" />
<Compile Include="EaseInExponentialAnimationT.cs" />
<Compile Include="EaseOutExponentialAnimationT.cs" />
<Compile Include="MultiAnimationT.cs" />
<Compile Include="DualAnimationT.cs" />
<Compile Include="EaseInElasticAnimationT.cs" />
<Compile Include="EaseOutElasticAnimationT.cs" />
<Compile Include="BaseElasticAnimationT.cs" />
<Compile Include="BaseAnimationT.cs" />
<Compile Include="ElasticAnimation.cs" />
<Compile Include="EaseInBounceAnimationT.cs" />
<Compile Include="EaseOutBounceAnimationT.cs" />
<Compile Include="BaseBounceAnimationT.cs" />
<Compile Include="IValueAnimatorT.cs" />
<Compile Include="ValueAnimator.cs" />
<Compile Include="EaseInBackAnimationT.cs" />
<Compile Include="EaseOutBackAnimationT.cs" />
<Compile Include="BaseBackAnimationT.cs" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
</Project>