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).
- Host: GitHub
- URL: https://github.com/yanglr/xsltdebugdemo
- Owner: yanglr
- License: mit
- Created: 2020-05-29T06:08:12.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-13T05:32:46.000Z (over 3 years ago)
- Last Synced: 2025-03-15T10:41:48.960Z (over 1 year ago)
- Topics: dotnet-core, xslt
- Language: C#
- Size: 405 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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(@"../../..");
```