forked from scriptcs/scriptcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptCs.Contracts.csproj
More file actions
26 lines (26 loc) · 1.23 KB
/
ScriptCs.Contracts.csproj
File metadata and controls
26 lines (26 loc) · 1.23 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.0</Version>
<TargetFramework>netstandard2.0</TargetFramework>
<Title>ScriptCs.Contracts</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.Contracts</PackageId>
<Description>ScriptCs.Contracts contains the components necessary to create script packs for scriptcs.</Description>
<PackageTags>roslyn csx script packs scriptcs</PackageTags>
<DefineConstants>LIBLOG_PROVIDERS_ONLY</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\ScriptCs.Core\Guard.cs" Link="Guard.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
<PackageReference Include="System.ComponentModel.Composition" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.ComponentModel.Composition" />
</ItemGroup>
</Project>