author | cavaliet |
Wed, 07 Oct 2009 17:16:46 +0200 | |
changeset 135 | 84b3bf5ee3d2 |
parent 127 | d2c42d42f504 |
child 138 | 61ba19954ed4 |
permissions | -rw-r--r-- |
9 | 1 |
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> |
2 |
<PropertyGroup> |
|
3 |
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
|
4 |
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
|
5 |
<ProjectGuid>{1E80D5A1-C45C-443B-8992-4A4D78D280FC}</ProjectGuid> |
|
6 |
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> |
|
7 |
<RootNamespace>FingersDance.Actions</RootNamespace> |
|
8 |
<AssemblyName>FingersDance.Actions</AssemblyName> |
|
9 |
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion> |
|
10 |
<WarningLevel>4</WarningLevel> |
|
39 | 11 |
<OutputType>Library</OutputType> |
9 | 12 |
<Install>true</Install> |
13 |
<InstallFrom>Web</InstallFrom> |
|
14 |
<UpdateEnabled>true</UpdateEnabled> |
|
15 |
<UpdateMode>Foreground</UpdateMode> |
|
16 |
<UpdateInterval>7</UpdateInterval> |
|
17 |
<UpdateIntervalUnits>Days</UpdateIntervalUnits> |
|
18 |
<UpdatePeriodically>false</UpdatePeriodically> |
|
19 |
<UpdateRequired>false</UpdateRequired> |
|
20 |
<MapFileExtensions>false</MapFileExtensions> |
|
21 |
<ApplicationVersion>1.0.0.*</ApplicationVersion> |
|
22 |
<IsWebBootstrapper>true</IsWebBootstrapper> |
|
23 |
<BootstrapperEnabled>true</BootstrapperEnabled> |
|
24 |
<PublishUrl>Publish\</PublishUrl> |
|
25 |
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> |
|
39 | 26 |
<StartupObject> |
27 |
</StartupObject> |
|
9 | 28 |
</PropertyGroup> |
29 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
|
30 |
<DebugSymbols>true</DebugSymbols> |
|
31 |
<DebugType>full</DebugType> |
|
32 |
<Optimize>false</Optimize> |
|
33 |
<OutputPath>.\bin\Debug\</OutputPath> |
|
34 |
<DefineConstants>DEBUG;TRACE</DefineConstants> |
|
35 |
</PropertyGroup> |
|
36 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
|
37 |
<DebugSymbols>false</DebugSymbols> |
|
38 |
<Optimize>true</Optimize> |
|
39 |
<OutputPath>.\bin\Release\</OutputPath> |
|
40 |
<DefineConstants>TRACE</DefineConstants> |
|
41 |
</PropertyGroup> |
|
127 | 42 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> |
43 |
<DebugSymbols>true</DebugSymbols> |
|
44 |
<OutputPath>bin\x86\Debug\</OutputPath> |
|
45 |
<DefineConstants>DEBUG;TRACE</DefineConstants> |
|
46 |
<DebugType>full</DebugType> |
|
47 |
<PlatformTarget>x86</PlatformTarget> |
|
48 |
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression> |
|
49 |
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile> |
|
50 |
</PropertyGroup> |
|
51 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> |
|
52 |
<OutputPath>bin\x86\Release\</OutputPath> |
|
53 |
<DefineConstants>TRACE</DefineConstants> |
|
54 |
<Optimize>true</Optimize> |
|
55 |
<PlatformTarget>x86</PlatformTarget> |
|
56 |
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression> |
|
57 |
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile> |
|
58 |
</PropertyGroup> |
|
9 | 59 |
<ItemGroup> |
60 |
<Reference Include="System" /> |
|
61 |
<Reference Include="System.Core"> |
|
62 |
<RequiredTargetFramework>3.5</RequiredTargetFramework> |
|
63 |
</Reference> |
|
64 |
<Reference Include="System.Xml.Linq"> |
|
65 |
<RequiredTargetFramework>3.5</RequiredTargetFramework> |
|
66 |
</Reference> |
|
67 |
<Reference Include="System.Data.DataSetExtensions"> |
|
68 |
<RequiredTargetFramework>3.5</RequiredTargetFramework> |
|
69 |
</Reference> |
|
70 |
<Reference Include="System.Data" /> |
|
71 |
<Reference Include="System.Xml" /> |
|
72 |
<Reference Include="WindowsBase" /> |
|
73 |
<Reference Include="PresentationCore" /> |
|
74 |
<Reference Include="PresentationFramework" /> |
|
75 |
<Reference Include="Microsoft.Surface" /> |
|
76 |
<Reference Include="Microsoft.Surface.Presentation" /> |
|
77 |
<Reference Include="Microsoft.Surface.Presentation.Generic" /> |
|
78 |
</ItemGroup> |
|
79 |
<ItemGroup> |
|
75
99d003723474
data binding second step. we can add annotation by clicking on menu buttons or timeline.
cavaliet
parents:
44
diff
changeset
|
80 |
<Compile Include="ActionAddAnnotation.cs" /> |
16 | 81 |
<Compile Include="ActionBase.cs" /> |
44
9c6ea1f246da
Correction tu TestMenu
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
39
diff
changeset
|
82 |
<Compile Include="ActionOpenMedia.cs" /> |
9c6ea1f246da
Correction tu TestMenu
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
39
diff
changeset
|
83 |
<Compile Include="ActionPlayMedia.cs" /> |
9c6ea1f246da
Correction tu TestMenu
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
39
diff
changeset
|
84 |
<Compile Include="ActionShowMessage.cs" /> |
135
84b3bf5ee3d2
First step of drag and drop annotation from a timeline to an other player
cavaliet
parents:
127
diff
changeset
|
85 |
<Compile Include="ActionStartOrEndAnnotation.cs" /> |
44
9c6ea1f246da
Correction tu TestMenu
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
39
diff
changeset
|
86 |
<Compile Include="ActionStopMedia.cs" /> |
9 | 87 |
<Compile Include="Properties\AssemblyInfo.cs" /> |
88 |
<EmbeddedResource Include="Properties\Resources.resx"> |
|
89 |
<Generator>ResXFileCodeGenerator</Generator> |
|
90 |
<SubType>Designer</SubType> |
|
91 |
<LastGenOutput>Resources.Designer.cs</LastGenOutput> |
|
92 |
</EmbeddedResource> |
|
93 |
<None Include="Properties\Settings.settings"> |
|
94 |
<Generator>SettingsSingleFileGenerator</Generator> |
|
95 |
<LastGenOutput>Settings.Designer.cs</LastGenOutput> |
|
96 |
</None> |
|
97 |
<Compile Include="Properties\Resources.Designer.cs"> |
|
98 |
<AutoGen>True</AutoGen> |
|
99 |
<DesignTime>True</DesignTime> |
|
100 |
<DependentUpon>Resources.resx</DependentUpon> |
|
101 |
</Compile> |
|
102 |
<Compile Include="Properties\Settings.Designer.cs"> |
|
103 |
<AutoGen>True</AutoGen> |
|
104 |
<DesignTimeSharedInput>True</DesignTimeSharedInput> |
|
105 |
<DependentUpon>Settings.settings</DependentUpon> |
|
106 |
</Compile> |
|
107 |
<AppDesigner Include="Properties\" /> |
|
108 |
</ItemGroup> |
|
109 |
<ItemGroup> |
|
110 |
<Content Include="Resources\icon.png"> |
|
111 |
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
|
112 |
</Content> |
|
113 |
<Content Include="Resources\iconPreview.png"> |
|
114 |
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
|
115 |
</Content> |
|
116 |
</ItemGroup> |
|
117 |
<ItemGroup> |
|
118 |
<Resource Include="Resources\WindowBackground.jpg" /> |
|
119 |
</ItemGroup> |
|
75
99d003723474
data binding second step. we can add annotation by clicking on menu buttons or timeline.
cavaliet
parents:
44
diff
changeset
|
120 |
<ItemGroup> |
99d003723474
data binding second step. we can add annotation by clicking on menu buttons or timeline.
cavaliet
parents:
44
diff
changeset
|
121 |
<ProjectReference Include="..\FingersDance.Control.TimeLine\FingersDance.Control.TimeLine.csproj"> |
99d003723474
data binding second step. we can add annotation by clicking on menu buttons or timeline.
cavaliet
parents:
44
diff
changeset
|
122 |
<Project>{2BCEE1BF-D3AC-478C-A26B-DFDB7420E965}</Project> |
99d003723474
data binding second step. we can add annotation by clicking on menu buttons or timeline.
cavaliet
parents:
44
diff
changeset
|
123 |
<Name>FingersDance.Control.TimeLine</Name> |
99d003723474
data binding second step. we can add annotation by clicking on menu buttons or timeline.
cavaliet
parents:
44
diff
changeset
|
124 |
</ProjectReference> |
135
84b3bf5ee3d2
First step of drag and drop annotation from a timeline to an other player
cavaliet
parents:
127
diff
changeset
|
125 |
<ProjectReference Include="..\FingersDance.ViewModel\FingersDance.ViewModels.csproj"> |
84b3bf5ee3d2
First step of drag and drop annotation from a timeline to an other player
cavaliet
parents:
127
diff
changeset
|
126 |
<Project>{E81BB080-0598-43AC-90CE-54D6570C4E9E}</Project> |
84b3bf5ee3d2
First step of drag and drop annotation from a timeline to an other player
cavaliet
parents:
127
diff
changeset
|
127 |
<Name>FingersDance.ViewModels</Name> |
84b3bf5ee3d2
First step of drag and drop annotation from a timeline to an other player
cavaliet
parents:
127
diff
changeset
|
128 |
</ProjectReference> |
75
99d003723474
data binding second step. we can add annotation by clicking on menu buttons or timeline.
cavaliet
parents:
44
diff
changeset
|
129 |
</ItemGroup> |
9 | 130 |
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
131 |
</Project> |