forked from scriptcs/scriptcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptCs.Hosting.csproj
More file actions
31 lines (31 loc) · 1.38 KB
/
ScriptCs.Hosting.csproj
File metadata and controls
31 lines (31 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.0</Version>
<TargetFramework>net461</TargetFramework>
<Title>ScriptCs.Hosting</Title>
<Authors>Glenn Block, Filip Wojcieszyn, Justin Rusbatch</Authors>
<PackageLicenseUrl>https://github.com/scriptcs/scriptcs/blob/master/LICENSE.md</PackageLicenseUrl>
<PackageProjectUrl>http://scriptcs.net</PackageProjectUrl>
<PackageIconUrl>http://www.gravatar.com/avatar/5c754f646971d8bc800b9d4057931938.png?s=120</PackageIconUrl>
<PackageId>ScriptCs.Hosting</PackageId>
<Description>ScriptCs.Hosting provides common services necessary for hosting scriptcs in your application.</Description>
<PackageTags>roslyn csx script scriptcs</PackageTags>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\ScriptCs.Core\Guard.cs" Link="Guard.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Autofac" />
<PackageReference Include="Autofac.Mef" />
<PackageReference Include="Microsoft.Web.Xdt" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="NuGet.Core" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ScriptCs.Contracts\ScriptCs.Contracts.csproj" />
<ProjectReference Include="..\ScriptCs.Core\ScriptCs.Core.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.ComponentModel.Composition" />
</ItemGroup>
</Project>