diff options
| author | Sophia Pearson <codergal89@gmail.com> | 2022-05-23 00:02:58 +0200 |
|---|---|---|
| committer | Sophia Pearson <codergal89@gmail.com> | 2022-05-23 00:02:58 +0200 |
| commit | 6fe4972aa48a29d0aafee0461ccd6c635ca9ee6c (patch) | |
| tree | 30ff503136f1d41ccbb35d3bb9fa6ab92f1e839a /Texty.csproj | |
| parent | f3c50714834d2d5cb204625c63aaeffb50bef236 (diff) | |
| download | texty-6fe4972aa48a29d0aafee0461ccd6c635ca9ee6c.tar.xz texty-6fe4972aa48a29d0aafee0461ccd6c635ca9ee6c.zip | |
commands: add basic command parser infrastructure
Diffstat (limited to 'Texty.csproj')
| -rw-r--r-- | Texty.csproj | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Texty.csproj b/Texty.csproj index 066bb51..fa11591 100644 --- a/Texty.csproj +++ b/Texty.csproj @@ -4,13 +4,13 @@ <LangVersion>8</LangVersion> </PropertyGroup> <ItemGroup> - <Compile Remove="ScriptTemplates\**"/> - <Compile Remove="Scenes\**"/> - <Compile Remove="Tests\**"/> + <Compile Remove="ScriptTemplates\**" /> + <Compile Remove="Scenes\**" /> + <Compile Remove="Tests\**" /> </ItemGroup> <ItemGroup> - <EmbeddedResource Remove="ScriptTemplates\**"/> - <EmbeddedResource Remove="Scenes\**"/> - <EmbeddedResource Remove="Tests\**"/> + <EmbeddedResource Remove="ScriptTemplates\**" /> + <EmbeddedResource Remove="Scenes\**" /> + <EmbeddedResource Remove="Tests\**" /> </ItemGroup> </Project>
\ No newline at end of file |
