An open API service indexing awesome lists of open source software.

https://github.com/yanglr/xsltdebugdemo

xslt transformation demo project (.NET core).
https://github.com/yanglr/xsltdebugdemo

dotnet-core xslt

Last synced: about 1 month ago
JSON representation

xslt transformation demo project (.NET core).

Awesome Lists containing this project

README

          

# xsltDebugDemo
xslt transformation demo project (.NET core).

### Notes

This functionality is only available in **Visual Studio Professional/Enterprise version**.

For .NET Framework, the code to get basePath should be

```cs
string basePath = Path.GetDirectoryName(@"../../");
```

For .NET Core (.NET 5, 6, 7 etc.), the code to get basePath should be

```cs
string basePath = Path.GetDirectoryName(@"../../..");
```