Changeset 11205 for lang/csharp
- Timestamp:
- 05/06/08 18:55:45 (7 months ago)
- Location:
- lang/csharp/iTunesCOMWrap/trunk
- Files:
-
- 1 added
- 26 modified
-
. (modified) (1 prop)
-
iTunesCOMWrap/Application.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Artworks.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Base.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/EQPresets.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Encoders.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Enums.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Factory.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Interfaces/IArtwork.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Interfaces/IBase.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Interfaces/IEQPresets.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Interfaces/IEncoders.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Interfaces/IOperationStatus.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Interfaces/IPlaylists.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Interfaces/ISources.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Interfaces/ITracks.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Interfaces/IVisuals.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Interfaces/IWindows.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/OperationStatus.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Playlists.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Properties/AssemblyInfo.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Sources.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/TODO.txt (added)
-
iTunesCOMWrap/Tracks.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Visuals.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/Windows.cs (modified) (1 diff, 2 props)
-
iTunesCOMWrap/iTunesCOMWrap.csproj (modified) (1 diff, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
lang/csharp/iTunesCOMWrap/trunk
- Property svn:ignore
-
old new 3 3 *.user 4 4 _ReSharper.* 5 *.resharper
-
- Property svn:ignore
-
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Application.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 using System; 1 // $Id$ 2 using System; 2 3 using System.Collections; 3 4 using System.Collections.Generic; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Artworks.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 using System; 1 // $Id$ 2 using System; 2 3 using System.Collections; 3 4 using System.Collections.Generic; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Base.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 using System; 1 // $Id$ 2 using System; 2 3 using System.Collections; 3 4 using System.Collections.Generic; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/EQPresets.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 using System; 1 // $Id$ 2 using System; 2 3 using System.Collections.Generic; 3 4 using System.Linq; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Encoders.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 using System; 1 // $Id$ 2 using System; 2 3 using System.Collections.Generic; 3 4 using System.Linq; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Enums.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 using System; 1 // $Id$ 2 using System; 2 3 using System.Collections; 3 4 using System.Collections.Generic; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Factory.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 // $Id$ 1 2 using System; 2 3 using Clovery.iTunesHelper.COMWrap.Interfaces; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Interfaces/IArtwork.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 // $Id$ 1 2 namespace Clovery.iTunesHelper.COMWrap.Interfaces 2 3 { -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Interfaces/IBase.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 // $Id$ 1 2 using System; 2 3 using System.Collections.Generic; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Interfaces/IEQPresets.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 // $Id$ 1 2 using iTunes = iTunesLib; 2 3 -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Interfaces/IEncoders.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 // $Id$ 1 2 using iTunes = iTunesLib; 2 3 -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Interfaces/IOperationStatus.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 // $Id$ 1 2 using System; 2 3 using Clovery.iTunesHelper.COMWrap.Interfaces; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Interfaces/IPlaylists.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 // $Id$ 1 2 using System.Collections.Generic; 2 3 -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Interfaces/ISources.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 // $Id$ 1 2 namespace Clovery.iTunesHelper.COMWrap.Interfaces 2 3 { -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Interfaces/ITracks.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 // $Id$ 1 2 using System; 2 3 using iTunes = iTunesLib; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Interfaces/IVisuals.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 // $Id$ 1 2 using iTunes = iTunesLib; 2 3 -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Interfaces/IWindows.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 // $Id$ 1 2 using Clovery.iTunesHelper.COMWrap; 2 3 -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/OperationStatus.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 using System; 1 // $Id$ 2 using System; 2 3 using System.Collections; 3 4 using System.Collections.Generic; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Playlists.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 using System; 1 // $Id$ 2 using System; 2 3 using System.Collections; 3 4 using System.Collections.Generic; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Properties/AssemblyInfo.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 using System.Reflection; 1 // $Id$ 2 using System.Reflection; 2 3 using System.Runtime.CompilerServices; 3 4 using System.Runtime.InteropServices; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Sources.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 // $Id$ 1 2 using System; 2 3 using System.Collections; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Tracks.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 using System; 1 // $Id$ 2 using System; 2 3 using System.Collections; 3 4 using System.Collections.Generic; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Visuals.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 using System; 1 // $Id$ 2 using System; 2 3 using System.Collections.Generic; 3 4 using System.Linq; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Windows.cs
- Property svn:eol-style set to CRLF
- Property svn:keywords set to Id URL Date Rev Author
r11175 r11205 1 using System; 1 // $Id$ 2 using System; 2 3 using System.Collections; 3 4 using System.Collections.Generic; -
lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/iTunesCOMWrap.csproj
- Property svn:eol-style set to CRLF
r11175 r11205 84 84 </COMReference> 85 85 </ItemGroup> 86 <ItemGroup> 87 <Content Include="TODO.txt" /> 88 </ItemGroup> 86 89 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 87 90 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)