source: other-projects/fft-ddr/summer-2014/trunk/FFDDR/FFDDR.csproj@ 32393

Last change on this file since 32393 was 29735, checked in by cct9, 9 years ago

Initial set of files for the FFT-Dance-Dance-Revolution project

  • Property svn:executable set to *
  • Property svn:mime-type set to application/xml
File size: 5.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4 <PropertyGroup>
5 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7 <ProjectGuid>{03F9B4C5-BF0C-48DD-B9AA-8A78DD7315FF}</ProjectGuid>
8 <OutputType>WinExe</OutputType>
9 <AppDesignerFolder>Properties</AppDesignerFolder>
10 <RootNamespace>FFDDR</RootNamespace>
11 <AssemblyName>FFDDR</AssemblyName>
12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13 <FileAlignment>512</FileAlignment>
14 </PropertyGroup>
15 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16 <PlatformTarget>AnyCPU</PlatformTarget>
17 <DebugSymbols>true</DebugSymbols>
18 <DebugType>full</DebugType>
19 <Optimize>false</Optimize>
20 <OutputPath>bin\Debug\</OutputPath>
21 <DefineConstants>DEBUG;TRACE</DefineConstants>
22 <ErrorReport>prompt</ErrorReport>
23 <WarningLevel>4</WarningLevel>
24 </PropertyGroup>
25 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26 <PlatformTarget>AnyCPU</PlatformTarget>
27 <DebugType>pdbonly</DebugType>
28 <Optimize>true</Optimize>
29 <OutputPath>bin\Release\</OutputPath>
30 <DefineConstants>TRACE</DefineConstants>
31 <ErrorReport>prompt</ErrorReport>
32 <WarningLevel>4</WarningLevel>
33 </PropertyGroup>
34 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
35 <DebugSymbols>true</DebugSymbols>
36 <OutputPath>bin\x86\Debug\</OutputPath>
37 <DefineConstants>DEBUG;TRACE</DefineConstants>
38 <DebugType>full</DebugType>
39 <PlatformTarget>x86</PlatformTarget>
40 <ErrorReport>prompt</ErrorReport>
41 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
42 <Prefer32Bit>true</Prefer32Bit>
43 </PropertyGroup>
44 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
45 <OutputPath>bin\x86\Release\</OutputPath>
46 <DefineConstants>TRACE</DefineConstants>
47 <Optimize>true</Optimize>
48 <DebugType>pdbonly</DebugType>
49 <PlatformTarget>x86</PlatformTarget>
50 <ErrorReport>prompt</ErrorReport>
51 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
52 <Prefer32Bit>true</Prefer32Bit>
53 </PropertyGroup>
54 <ItemGroup>
55 <Reference Include="Exocortex.DSP.v1">
56 <HintPath>..\..\..\..\Downloads\ExocortexDSP_v1.2\bin\Debug\Exocortex.DSP.v1.dll</HintPath>
57 </Reference>
58 <Reference Include="Microsoft.Kinect, Version=1.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
59 <Reference Include="NAudio">
60 <HintPath>..\packages\NAudio.1.7.2\lib\net35\NAudio.dll</HintPath>
61 </Reference>
62 <Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
63 <SpecificVersion>False</SpecificVersion>
64 <HintPath>..\..\..\..\Downloads\Json60r6\Bin\Net45\Newtonsoft.Json.dll</HintPath>
65 </Reference>
66 <Reference Include="System" />
67 <Reference Include="System.Core" />
68 <Reference Include="System.Xml.Linq" />
69 <Reference Include="System.Data.DataSetExtensions" />
70 <Reference Include="Microsoft.CSharp" />
71 <Reference Include="System.Data" />
72 <Reference Include="System.Deployment" />
73 <Reference Include="System.Drawing" />
74 <Reference Include="System.Windows.Forms" />
75 <Reference Include="System.Xml" />
76 </ItemGroup>
77 <ItemGroup>
78 <Compile Include="Form1.cs">
79 <SubType>Form</SubType>
80 </Compile>
81 <Compile Include="Form1.Designer.cs">
82 <DependentUpon>Form1.cs</DependentUpon>
83 </Compile>
84 <Compile Include="MicroLibrary.cs" />
85 <Compile Include="Program.cs" />
86 <Compile Include="Properties\AssemblyInfo.cs" />
87 <Compile Include="SkeletonManager.cs" />
88 <Compile Include="WavFrame.cs" />
89 <Compile Include="WavProcessor.cs" />
90 <EmbeddedResource Include="Form1.resx">
91 <DependentUpon>Form1.cs</DependentUpon>
92 </EmbeddedResource>
93 <EmbeddedResource Include="Properties\Resources.resx">
94 <Generator>ResXFileCodeGenerator</Generator>
95 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
96 <SubType>Designer</SubType>
97 </EmbeddedResource>
98 <Compile Include="Properties\Resources.Designer.cs">
99 <AutoGen>True</AutoGen>
100 <DependentUpon>Resources.resx</DependentUpon>
101 </Compile>
102 <None Include="packages.config" />
103 <None Include="Properties\Settings.settings">
104 <Generator>SettingsSingleFileGenerator</Generator>
105 <LastGenOutput>Settings.Designer.cs</LastGenOutput>
106 </None>
107 <Compile Include="Properties\Settings.Designer.cs">
108 <AutoGen>True</AutoGen>
109 <DependentUpon>Settings.settings</DependentUpon>
110 <DesignTimeSharedInput>True</DesignTimeSharedInput>
111 </Compile>
112 </ItemGroup>
113 <ItemGroup>
114 <None Include="App.config" />
115 </ItemGroup>
116 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
117 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
118 Other similar extension points exist, see Microsoft.Common.targets.
119 <Target Name="BeforeBuild">
120 </Target>
121 <Target Name="AfterBuild">
122 </Target>
123 -->
124</Project>
Note: See TracBrowser for help on using the repository browser.