Skip to content

Commit ae6d4c9

Browse files
committed
Fixed a missing assembly reference issue in WinServiceAppHost
1 parent 207f1fd commit ae6d4c9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/StarterTemplates/WinServiceAppHost/WinServiceAppHost.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
<Reference Include="ServiceStack">
3737
<HintPath>..\..\..\lib\ServiceStack.dll</HintPath>
3838
</Reference>
39+
<Reference Include="ServiceStack.Interfaces">
40+
<HintPath>..\..\..\lib\ServiceStack.Interfaces.dll</HintPath>
41+
</Reference>
3942
<Reference Include="System" />
4043
<Reference Include="System.Configuration.Install" />
4144
<Reference Include="System.Core" />
@@ -78,8 +81,8 @@
7881
</ItemGroup>
7982
<ItemGroup>
8083
<Content Include="default.htm">
81-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
82-
</Content>
84+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
85+
</Content>
8386
</ItemGroup>
8487
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
8588
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

0 commit comments

Comments
 (0)