Skip to content

Commit

Permalink
typescript.msbuild upgrade guide
Browse files Browse the repository at this point in the history
  • Loading branch information
volkanceylan committed Mar 14, 2019
1 parent 307bc14 commit 081d1b4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions startsharp/updating-startsharp.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,16 @@ Make sure you have following DynamicScriptHandler entry in your web.config:
</handlers>
```

## Serenity 3.8.5

This is not actually an issue about Serenity itself, but you might have this problem if you choose to update Microsoft.TypeScript.MsBuild in your Serene/StartSharp project.

TypeScript no longer has a tsc.exe file and it uses NodeJS instead of Chakra (Edge) so you need to update your .CSPROJ file, find CompileTSC section in your project file and replace it like below:

```xml
<Exec Command="&quot;$(NodePath)\node&quot; &quot;$(TSJavaScriptFile.Replace('build\\..\tools\', 'tools\'))&quot; -p ./tsconfig.json" ContinueOnError="true" />
```

## StartSharp v3.6.0.2

Starting with StartSharp 3.6.0.2, we have a new *Serenity.Pro.Scripts* NuGet package which contains some features which is only available for StartSharp customers.
Expand Down

0 comments on commit 081d1b4

Please sign in to comment.