Skip to content

Commit 79e4e3c

Browse files
committed
Fix bash wrapper
1 parent 9193dab commit 79e4e3c

File tree

3 files changed

+45
-2
lines changed

3 files changed

+45
-2
lines changed

src/InEngine.Net.sln

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,44 @@ Global
4545
EndGlobalSection
4646
GlobalSection(NestedProjects) = preSolution
4747
EndGlobalSection
48+
GlobalSection(MonoDevelopProperties) = preSolution
49+
Policies = $0
50+
$0.TextStylePolicy = $1
51+
$1.TabsToSpaces = True
52+
$1.scope = text/x-csharp
53+
$0.CSharpFormattingPolicy = $2
54+
$2.scope = text/x-csharp
55+
$0.TextStylePolicy = $3
56+
$3.TabsToSpaces = True
57+
$3.EolMarker = Unix
58+
$3.scope = text/plain
59+
$0.TextStylePolicy = $4
60+
$4.inheritsSet = null
61+
$4.scope = application/config+xml
62+
$0.XmlFormattingPolicy = $5
63+
$5.inheritsSet = null
64+
$5.scope = application/config+xml
65+
$0.TextStylePolicy = $6
66+
$6.TabsToSpaces = True
67+
$6.scope = application/xml
68+
$0.XmlFormattingPolicy = $7
69+
$7.scope = application/xml
70+
$0.TextStylePolicy = $8
71+
$8.TabWidth = 2
72+
$8.TabsToSpaces = True
73+
$8.IndentWidth = 2
74+
$8.NoTabsAfterNonTabs = True
75+
$8.scope = text/x-json
76+
$0.JSONFormattingPolicy = $9
77+
$9.AutoStructureCompletion = True
78+
$9.BracePositions = SemiExpanded
79+
$9.FormatOnPaste = True
80+
$9.scope = text/x-json
81+
$0.TextStylePolicy = $10
82+
$10.inheritsSet = null
83+
$10.scope = text/x-web
84+
$0.TextStylePolicy = $11
85+
$11.inheritsSet = null
86+
$11.scope = text/x-vs
87+
EndGlobalSection
4888
EndGlobal

src/InEngine/InEngine.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@
9393
</None>
9494
<None Include="job_scheduling_data_2_0.xsd" />
9595
<None Include="Plugins\.gitkeep" />
96-
<None Include="inengine" />
96+
<None Include="inengine">
97+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
98+
</None>
9799
</ItemGroup>
98100
<ItemGroup>
99101
<ProjectReference Include="..\InEngine.Commands\InEngine.Commands.csproj">

src/InEngine/inengine

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
#!/usr/bin/env bash
1+
#!/usr/bin/env bash
22
mono inengine.exe "$@"
3+

0 commit comments

Comments
 (0)