Skip to content
This repository has been archived by the owner on May 21, 2018. It is now read-only.

Commit

Permalink
Building version 1.3 for nuget
Browse files Browse the repository at this point in the history
  • Loading branch information
cskeppstedt committed Aug 29, 2013
1 parent 8c19667 commit 4c50452
Show file tree
Hide file tree
Showing 6 changed files with 1,311 additions and 1,253 deletions.
78 changes: 0 additions & 78 deletions T4TS.Build/Models.cs

This file was deleted.

31 changes: 30 additions & 1 deletion T4TS.Build/T4TS.Build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,36 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Models.cs" />
<Compile Include="..\T4TS.Example\Models\Barfoo.cs">
<Link>Models\Barfoo.cs</Link>
</Compile>
<Compile Include="..\T4TS.Example\Models\Foobar.cs">
<Link>Models\Foobar.cs</Link>
</Compile>
<Compile Include="..\T4TS.Example\Models\InheritanceTest1.cs">
<Link>Models\InheritanceTest1.cs</Link>
</Compile>
<Compile Include="..\T4TS.Example\Models\InheritanceTest2.cs">
<Link>Models\InheritanceTest2.cs</Link>
</Compile>
<Compile Include="..\T4TS.Example\Models\InheritanceTest3.cs">
<Link>Models\InheritanceTest3.cs</Link>
</Compile>
<Compile Include="..\T4TS.Example\Models\InheritanceTest4.cs">
<Link>Models\InheritanceTest4.cs</Link>
</Compile>
<Compile Include="..\T4TS.Example\Models\Inherited.cs">
<Link>Models\Inherited.cs</Link>
</Compile>
<Compile Include="..\T4TS.Example\Models\Partial.First.cs">
<Link>Models\Partial.First.cs</Link>
</Compile>
<Compile Include="..\T4TS.Example\Models\Partial.Second.cs">
<Link>Models\Partial.Second.cs</Link>
</Compile>
<Compile Include="..\T4TS.Example\Models\TestClass.cs">
<Link>Models\TestClass.cs</Link>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
Expand Down
37 changes: 23 additions & 14 deletions T4TS.Build/T4TS.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
****************************************************************************/

// -- Begin global interfaces
/** Generated from T4TS.Build.Barfoo **/
/** Generated from T4TS.Example.Models.Barfoo **/
interface Barfoo {
Number: number;
Complex: T4TS.OverridenName;
Expand All @@ -13,7 +13,7 @@
// -- End global interfaces

module Fooz {
/** Generated from T4TS.Build.Foobar **/
/** Generated from T4TS.Example.Models.Foobar **/
export interface IFoobar {
OverrideAll?: bool;
Recursive: Fooz.IFoobar;
Expand All @@ -28,32 +28,41 @@ module Fooz {
}

module T4TS {
/** Generated from T4TS.Build.Inherited **/
export interface OverridenName {
OtherName?: string;
Integers: number[];
Doubles: number[];
TwoDimList: number[][];
[index: number]: Barfoo;
}
/** Generated from T4TS.Build.InheritanceTest1 **/
/** Generated from T4TS.Example.Models.InheritanceTest1 **/
export interface InheritanceTest1 extends Barfoo {
SomeString: string;
Recursive: Fooz.IFoobar;
}
/** Generated from T4TS.Build.InheritanceTest2 **/
/** Generated from T4TS.Example.Models.InheritanceTest2 **/
export interface InheritanceTest2 extends T4TS.InheritanceTest1 {
SomeString2: string;
Recursive2: Fooz.IFoobar;
}
/** Generated from T4TS.Build.InheritanceTest3 **/
/** Generated from T4TS.Example.Models.InheritanceTest3 **/
export interface InheritanceTest3 extends T4TS.OverridenName {
SomeString3: string;
Recursive3: Fooz.IFoobar;
}
/** Generated from T4TS.Build.InheritanceTest4 **/
/** Generated from T4TS.Example.Models.InheritanceTest4 **/
export interface InheritanceTest4 {
SomeString4: string;
Recursive4: Fooz.IFoobar;
}
/** Generated from T4TS.Example.Models.Inherited **/
export interface OverridenName {
OtherName?: string;
Integers: number[];
Doubles: number[];
TwoDimList: number[][];
[index: number]: Barfoo;
}
/** Generated from T4TS.Example.Models.Partial **/
export interface Partial {
FromFirstClass: string;
}
/** Generated from T4TS.Example.Models.Partial **/
export interface Partial {
FromSecondClass: string;
AlsoSecondClass?: any;
}
}
Loading

0 comments on commit 4c50452

Please sign in to comment.