| 1 |
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
| 2 |
<PropertyGroup> |
| 3 |
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
| 4 |
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
| 5 |
<ProductVersion>9.0.30729</ProductVersion> |
| 6 |
<SchemaVersion>2.0</SchemaVersion> |
| 7 |
<ProjectGuid>{6DA04F50-CD0E-4F4C-86EC-7B6D1C6D1388}</ProjectGuid> |
| 8 |
<ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> |
| 9 |
<OutputType>Library</OutputType> |
| 10 |
<AppDesignerFolder>Properties</AppDesignerFolder> |
| 11 |
<RootNamespace>SlMML</RootNamespace> |
| 12 |
<AssemblyName>SlMML</AssemblyName> |
| 13 |
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion> |
| 14 |
<SilverlightApplication>false</SilverlightApplication> |
| 15 |
<ValidateXaml>true</ValidateXaml> |
| 16 |
<ThrowErrorsInValidation>true</ThrowErrorsInValidation> |
| 17 |
</PropertyGroup> |
| 18 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
| 19 |
<DebugSymbols>true</DebugSymbols> |
| 20 |
<DebugType>full</DebugType> |
| 21 |
<Optimize>false</Optimize> |
| 22 |
<OutputPath>Bin\Debug</OutputPath> |
| 23 |
<DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> |
| 24 |
<NoStdLib>true</NoStdLib> |
| 25 |
<NoConfig>true</NoConfig> |
| 26 |
<ErrorReport>prompt</ErrorReport> |
| 27 |
<WarningLevel>4</WarningLevel> |
| 28 |
</PropertyGroup> |
| 29 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
| 30 |
<DebugType>pdbonly</DebugType> |
| 31 |
<Optimize>true</Optimize> |
| 32 |
<OutputPath>Bin\Release</OutputPath> |
| 33 |
<DefineConstants>TRACE;SILVERLIGHT</DefineConstants> |
| 34 |
<NoStdLib>true</NoStdLib> |
| 35 |
<NoConfig>true</NoConfig> |
| 36 |
<ErrorReport>prompt</ErrorReport> |
| 37 |
<WarningLevel>4</WarningLevel> |
| 38 |
</PropertyGroup> |
| 39 |
<ItemGroup> |
| 40 |
<Reference Include="System.Core" /> |
| 41 |
<Reference Include="System.Windows" /> |
| 42 |
<Reference Include="mscorlib" /> |
| 43 |
</ItemGroup> |
| 44 |
<ItemGroup> |
| 45 |
<Compile Include="Channel.cs" /> |
| 46 |
<Compile Include="Compiler.cs" /> |
| 47 |
<Compile Include="Envelope.cs" /> |
| 48 |
<Compile Include="Events\Close.cs" /> |
| 49 |
<Compile Include="Events\Detune.cs" /> |
| 50 |
<Compile Include="Events\Envelope.cs" /> |
| 51 |
<Compile Include="Events\Eot.cs" /> |
| 52 |
<Compile Include="Events\Event.cs" /> |
| 53 |
<Compile Include="Events\Form.cs" /> |
| 54 |
<Compile Include="Events\Input.cs" /> |
| 55 |
<Compile Include="Events\LFO.cs" /> |
| 56 |
<Compile Include="Events\LPF.cs" /> |
| 57 |
<Compile Include="Events\NoiseFrequency.cs" /> |
| 58 |
<Compile Include="Events\Nop.cs" /> |
| 59 |
<Compile Include="Events\Note.cs" /> |
| 60 |
<Compile Include="Events\NoteSwitch.cs" /> |
| 61 |
<Compile Include="Events\NoteOff.cs" /> |
| 62 |
<Compile Include="Events\NoteOn.cs" /> |
| 63 |
<Compile Include="Events\Output.cs" /> |
| 64 |
<Compile Include="Events\Pan.cs" /> |
| 65 |
<Compile Include="Events\PWM.cs" /> |
| 66 |
<Compile Include="Events\Tempo.cs" /> |
| 67 |
<Compile Include="Events\VCF.cs" /> |
| 68 |
<Compile Include="Events\VCO.cs" /> |
| 69 |
<Compile Include="Events\Volume.cs" /> |
| 70 |
<Compile Include="Events\VolumeMode.cs" /> |
| 71 |
<Compile Include="Events\Vowel.cs" /> |
| 72 |
<Compile Include="Events\Expression.cs" /> |
| 73 |
<Compile Include="Events\Ring.cs" /> |
| 74 |
<Compile Include="Events\Sync.cs" /> |
| 75 |
<Compile Include="Filter.cs" /> |
| 76 |
<Compile Include="Formant.cs" /> |
| 77 |
<Compile Include="Modulators\FCDPCM.cs" /> |
| 78 |
<Compile Include="Oscillator.cs" /> |
| 79 |
<Compile Include="Modulators\FCNoise.cs" /> |
| 80 |
<Compile Include="Modulators\FCTriangle.cs" /> |
| 81 |
<Compile Include="Modulators\GBLongNoise.cs" /> |
| 82 |
<Compile Include="Modulators\GBShortNoise.cs" /> |
| 83 |
<Compile Include="Modulators\GBWave.cs" /> |
| 84 |
<Compile Include="Modulators\IModulator.cs" /> |
| 85 |
<Compile Include="Modulators\Modulator.cs" /> |
| 86 |
<Compile Include="Modulators\Noise.cs" /> |
| 87 |
<Compile Include="Modulators\Pulse.cs" /> |
| 88 |
<Compile Include="Modulators\Saw.cs" /> |
| 89 |
<Compile Include="Modulators\Sine.cs" /> |
| 90 |
<Compile Include="Modulators\Triangle.cs" /> |
| 91 |
<Compile Include="Parsers\FlMMLStyleParser.cs" /> |
| 92 |
<Compile Include="Parsers\IParsable.cs"> |
| 93 |
<SubType>Code</SubType> |
| 94 |
</Compile> |
| 95 |
<Compile Include="Parsers\Parser.cs"> |
| 96 |
<SubType>Code</SubType> |
| 97 |
</Compile> |
| 98 |
<Compile Include="Properties\AssemblyInfo.cs" /> |
| 99 |
<Compile Include="Sample.cs" /> |
| 100 |
<Compile Include="Sequencer.cs" /> |
| 101 |
<Compile Include="Track.cs" /> |
| 102 |
</ItemGroup> |
| 103 |
<Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight\v3.0\Microsoft.Silverlight.CSharp.targets" /> |
| 104 |
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
| 105 |
Other similar extension points exist, see Microsoft.Common.targets. |
| 106 |
<Target Name="BeforeBuild"> |
| 107 |
</Target> |
| 108 |
<Target Name="AfterBuild"> |
| 109 |
</Target> |
| 110 |
--> |
| 111 |
<ProjectExtensions> |
| 112 |
<VisualStudio> |
| 113 |
<FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> |
| 114 |
<SilverlightProjectProperties /> |
| 115 |
</FlavorProperties> |
| 116 |
</VisualStudio> |
| 117 |
</ProjectExtensions> |
| 118 |
</Project> |