Skip to content

Commit

Permalink
Fix missed rename in targets file and republish.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexperovich committed May 17, 2015
1 parent c97b5e3 commit 73db2fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CS2TS-Nuget/CS2TS-Nuget.nuproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<Import Project="$(NuProjPath)\NuProj.props" Condition="Exists('$(NuProjPath)\NuProj.props')" />
<PropertyGroup Label="Configuration">
<Id>CS2TS</Id>
<Version>1.0.0-beta1</Version>
<Version>1.0.0-beta2</Version>
<Title>CSharp To Typescript</Title>
<Authors>Alex Perovich</Authors>
<Owners>Alex Perovich</Owners>
Expand Down
5 changes: 3 additions & 2 deletions CS2TS-Nuget/build/CS2TS.targets
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
<CS2TSToolPath Condition="'$(CS2TSToolPath)' == ''">$(CS2TSToolDirectory)\CS2TS.exe</CS2TSToolPath>
</PropertyGroup>
<PropertyGroup>
<CS2TSTypeScriptOutput Condition="'$(CS2TSTypeScriptDefinitionFile)' == ''">$(MSBuildProjectDirectory)\Scripts\generatedTypes.ts</CS2TSTypeScriptOutput>
<CS2TSTypeScriptOutput Condition="'$(CS2TSTypeScriptOutput)' == ''">$(MSBuildProjectDirectory)\Scripts\generatedTypes.ts</CS2TSTypeScriptOutput>
</PropertyGroup>

<Target BeforeTargets="PreComputeCompileTypeScript;CoreCompile" Name="GenerateTypeDeclarations" Inputs="@(Compile->WithMetadataValue('ProcessToTypescript', 'true'));@(CS2TSInputFile)" Outputs="$(CS2TSTypeScriptDefinitionFile)"
<Target BeforeTargets="PreComputeCompileTypeScript;CoreCompile" Name="GenerateTypeDeclarations" Inputs="@(Compile->WithMetadataValue('ProcessToTypescript', 'true'));@(CS2TSInputFile)"
Outputs="$(CS2TSTypeScriptOutput)"
DependsOnTargets="ResolveReferences">
<ItemGroup>
<CS2TSInputFile Include="@(Compile->WithMetadataValue('ProcessToTypescript', 'true'))"/>
Expand Down

0 comments on commit 73db2fa

Please sign in to comment.