Skip to content

Commit

Permalink
Update Tokenizer project references
Browse files Browse the repository at this point in the history
  • Loading branch information
albertospelta committed Feb 22, 2024
1 parent 5223cb5 commit 07a9e46
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Dax.Vpax.Obfuscator.CI.slnf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"src\\Dax.Vpax.Obfuscator.CLI\\Dax.Vpax.Obfuscator.CLI.csproj",
"src\\Dax.Vpax.Obfuscator.Common\\Dax.Vpax.Obfuscator.Common.csproj",
"src\\Dax.Vpax.Obfuscator\\Dax.Vpax.Obfuscator.csproj",
"src\\TabularEditor.Dax.Tokenizer\\TabularEditor.Dax.Tokenizer.csproj",
"src\\Dax.Tokenizer\\Dax.Tokenizer.csproj",
"tests\\Dax.Vpax.Obfuscator.Common.Tests\\Dax.Vpax.Obfuscator.Common.Tests.csproj",
"tests\\Dax.Vpax.Obfuscator.Tests\\Dax.Vpax.Obfuscator.Tests.csproj"
]
Expand Down
2 changes: 1 addition & 1 deletion Dax.Vpax.Obfuscator.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ VisualStudioVersion = 17.1.32414.318
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Dax.Vpax.Obfuscator.Common", "src\Dax.Vpax.Obfuscator.Common\Dax.Vpax.Obfuscator.Common.csproj", "{80F06AB5-55E7-4190-9ADB-0724B9AD5509}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TabularEditor.Dax.Tokenizer", "src\TabularEditor.Dax.Tokenizer\TabularEditor.Dax.Tokenizer.csproj", "{D1B0052F-6048-4FFC-A7F3-93DD27351077}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Dax.Tokenizer", "src\Dax.Tokenizer\Dax.Tokenizer.csproj", "{D1B0052F-6048-4FFC-A7F3-93DD27351077}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Dax.Vpax.Obfuscator.Common.Tests", "tests\Dax.Vpax.Obfuscator.Common.Tests\Dax.Vpax.Obfuscator.Common.Tests.csproj", "{1887308A-AB4C-40D4-B13A-B5240D4E90F6}"
EndProject
Expand Down
10 changes: 5 additions & 5 deletions src/Dax.Vpax.Obfuscator/Dax.Vpax.Obfuscator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<ItemGroup>
<ProjectReference Include="..\Dax.Vpax.Obfuscator.Common\Dax.Vpax.Obfuscator.Common.csproj" PrivateAssets="all" />
<ProjectReference Include="..\TabularEditor.Dax.Tokenizer\TabularEditor.Dax.Tokenizer.csproj" PrivateAssets="all" />
<ProjectReference Include="..\Dax.Tokenizer\Dax.Tokenizer.csproj" PrivateAssets="all" />
</ItemGroup>

<ItemGroup>
Expand All @@ -32,7 +32,7 @@
<BuildAction>None</BuildAction>
<PackagePath>lib\net462\</PackagePath>
</_PackageFiles>
<_PackageFiles Include="$(OutputPath.TrimEnd('\').TrimEnd('/'))_net462\TabularEditor.Dax.Tokenizer.dll">
<_PackageFiles Include="$(OutputPath.TrimEnd('\').TrimEnd('/'))_net462\Dax.Tokenizer.dll">
<BuildAction>None</BuildAction>
<PackagePath>lib\net462\</PackagePath>
</_PackageFiles>
Expand All @@ -41,7 +41,7 @@
<BuildAction>None</BuildAction>
<PackagePath>lib\netcoreapp3.1\</PackagePath>
</_PackageFiles>
<_PackageFiles Include="$(OutputPath.TrimEnd('\').TrimEnd('/'))_netcoreapp3.1\TabularEditor.Dax.Tokenizer.dll">
<_PackageFiles Include="$(OutputPath.TrimEnd('\').TrimEnd('/'))_netcoreapp3.1\Dax.Tokenizer.dll">
<BuildAction>None</BuildAction>
<PackagePath>lib\netcoreapp3.1\</PackagePath>
</_PackageFiles>
Expand All @@ -50,7 +50,7 @@
<BuildAction>None</BuildAction>
<PackagePath>lib\net6.0\</PackagePath>
</_PackageFiles>
<_PackageFiles Include="$(OutputPath.TrimEnd('\').TrimEnd('/'))_net6.0\TabularEditor.Dax.Tokenizer.dll">
<_PackageFiles Include="$(OutputPath.TrimEnd('\').TrimEnd('/'))_net6.0\Dax.Tokenizer.dll">
<BuildAction>None</BuildAction>
<PackagePath>lib\net6.0\</PackagePath>
</_PackageFiles>
Expand All @@ -59,7 +59,7 @@
<BuildAction>None</BuildAction>
<PackagePath>lib\net8.0\</PackagePath>
</_PackageFiles>
<_PackageFiles Include="$(OutputPath.TrimEnd('\').TrimEnd('/'))_net8.0\TabularEditor.Dax.Tokenizer.dll">
<_PackageFiles Include="$(OutputPath.TrimEnd('\').TrimEnd('/'))_net8.0\Dax.Tokenizer.dll">
<BuildAction>None</BuildAction>
<PackagePath>lib\net8.0\</PackagePath>
</_PackageFiles>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Dax.Vpax.Obfuscator.Extensions;
using System.Text;
using TabularEditor.Dax.Tokenizer;
using Dax.Tokenizer;

namespace Dax.Vpax.Obfuscator;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Dax.Vpax.Obfuscator.Extensions;
using System.Text;
using TabularEditor.Dax.Tokenizer;
using Dax.Tokenizer;

namespace Dax.Vpax.Obfuscator;

Expand Down
2 changes: 1 addition & 1 deletion src/Dax.Vpax.Obfuscator/Extensions/DaxTokenExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System.Diagnostics;
using TabularEditor.Dax.Tokenizer;
using Dax.Tokenizer;

namespace Dax.Vpax.Obfuscator.Extensions;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<ItemGroup>
<ProjectReference Include="..\..\src\Dax.Vpax.Obfuscator.Common\Dax.Vpax.Obfuscator.Common.csproj" />
<ProjectReference Include="..\..\src\Dax.Vpax.Obfuscator\Dax.Vpax.Obfuscator.csproj" />
<ProjectReference Include="..\..\src\TabularEditor.Dax.Tokenizer\TabularEditor.Dax.Tokenizer.csproj" />
<ProjectReference Include="..\..\src\Dax.Tokenizer\Dax.Tokenizer.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using Dax.Metadata;
using Dax.Vpax.Obfuscator.Common;
using Dax.Vpax.Obfuscator.Tests.TestUtils;
using TabularEditor.Dax.Tokenizer;
using Dax.Tokenizer;
using Xunit;

namespace Dax.Vpax.Obfuscator.Tests;
Expand Down
2 changes: 1 addition & 1 deletion tests/Dax.Vpax.Obfuscator.Tests/DaxModelObfuscatorTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Globalization;
using Dax.Metadata;
using Dax.Vpax.Obfuscator.Tests.TestUtils;
using TabularEditor.Dax.Tokenizer;
using Dax.Tokenizer;
using Xunit;

namespace Dax.Vpax.Obfuscator.Tests;
Expand Down

0 comments on commit 07a9e46

Please sign in to comment.