Skip to content

Commit

Permalink
fix: fixing text template include lines to work on any OS
Browse files Browse the repository at this point in the history
  • Loading branch information
lerocha committed Feb 4, 2024
1 parent 4d20cd8 commit adf58ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ChinookDatabase.Test/DatabaseTests/DatabaseFixture.tt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<#@ import namespace="System.IO" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Text.RegularExpressions" #>
<#@ include file="..\..\ChinookDatabase\_T4Templates\Chinook.ttinclude" #>
<#@ include file="..\..\ChinookDatabase\_T4Templates\Manager.ttinclude" #>
<#@ include file="../../ChinookDatabase/_T4Templates/Chinook.ttinclude" #>
<#@ include file="../../ChinookDatabase/_T4Templates/Manager.ttinclude" #>
<#
var options = new [] {
new Option
Expand Down
4 changes: 2 additions & 2 deletions ChinookDatabase/DataSources/ChinookDatabase.tt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<#@ template language="C#" debug="true" hostSpecific="true" #>
<#@ output extension=".txt" #>
<#@ include file="..\_T4Templates\Chinook.ttinclude"#>
<#@ include file="..\_T4Templates\Manager.ttinclude"#>
<#@ include file="../_T4Templates/Chinook.ttinclude"#>
<#@ include file="../_T4Templates/Manager.ttinclude"#>
<#

var options = new
Expand Down

0 comments on commit adf58ca

Please sign in to comment.