Skip to content

Commit

Permalink
📦 Struct: No need for Cheese.Contract
Browse files Browse the repository at this point in the history
  • Loading branch information
Dynesshely committed Jun 19, 2024
1 parent f00071e commit 52f6361
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 44 deletions.
13 changes: 0 additions & 13 deletions Cheese.Contract/Cheese.Contract.csproj

This file was deleted.

6 changes: 0 additions & 6 deletions Cheese.Contract/IProvider.cs

This file was deleted.

6 changes: 0 additions & 6 deletions Cheese.Contract/Providers/ILocalizationProvider.cs

This file was deleted.

8 changes: 0 additions & 8 deletions Cheese.Contract/Providers/IReferencesProvider.cs

This file was deleted.

6 changes: 0 additions & 6 deletions Cheese.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cheese", "Cheese\Cheese.csproj", "{09A0DDB2-6C74-4D82-847A-305CCEBB65C5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cheese.Contract", "Cheese.Contract\Cheese.Contract.csproj", "{3DBE6ABF-ACF7-4499-A4D0-BE98D31DFA61}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cheese.Shared", "Cheese.Shared\Cheese.Shared.csproj", "{D78E8C97-0107-4A7F-9566-2DFF092E6048}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cheese.UnitTests", "Cheese.UnitTests\Cheese.UnitTests.csproj", "{CD298668-B6AB-4166-A537-94316F947BC9}"
Expand All @@ -24,10 +22,6 @@ Global
{09A0DDB2-6C74-4D82-847A-305CCEBB65C5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{09A0DDB2-6C74-4D82-847A-305CCEBB65C5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{09A0DDB2-6C74-4D82-847A-305CCEBB65C5}.Release|Any CPU.Build.0 = Release|Any CPU
{3DBE6ABF-ACF7-4499-A4D0-BE98D31DFA61}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3DBE6ABF-ACF7-4499-A4D0-BE98D31DFA61}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3DBE6ABF-ACF7-4499-A4D0-BE98D31DFA61}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3DBE6ABF-ACF7-4499-A4D0-BE98D31DFA61}.Release|Any CPU.Build.0 = Release|Any CPU
{D78E8C97-0107-4A7F-9566-2DFF092E6048}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D78E8C97-0107-4A7F-9566-2DFF092E6048}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D78E8C97-0107-4A7F-9566-2DFF092E6048}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
1 change: 0 additions & 1 deletion Cheese/Cheese.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Cheese.Contract\Cheese.Contract.csproj" />
<ProjectReference Include="..\Cheese.Shared\Cheese.Shared.csproj" />
</ItemGroup>

Expand Down
4 changes: 0 additions & 4 deletions Cheese/Utils/General/ScriptHost.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System.Diagnostics;
using System.Reflection;
using System.Text;
using Cheese.Contract;
using Csharpell.Core;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Scripting;
Expand Down Expand Up @@ -38,15 +37,12 @@ public class ScriptHost
options = options
.WithReferences(Assembly.GetExecutingAssembly())
// This line and next line are to make sure namespaces all imported
.WithReferences(Assembly.GetAssembly(typeof(IProvider)))
.WithReferences(Assembly.GetAssembly(typeof(ScriptHost)))
.WithImports(
"Cheese",
"Cheese.Utils",
"Cheese.Utils.General",
"Cheese.Utils.References",
"Cheese.Contract",
"Cheese.Contract.Providers",
"Cheese.Shared",
"Cheese.Shared.PipeLine",
"Cheese.Shared.References"
Expand Down

0 comments on commit 52f6361

Please sign in to comment.