forked from scriptcs/scriptcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptCs.csproj
More file actions
29 lines (29 loc) · 1.38 KB
/
ScriptCs.csproj
File metadata and controls
29 lines (29 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.0</Version>
<OutputType>Exe</OutputType>
<TargetFramework>net461</TargetFramework>
<Title>scriptcs</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</PackageId>
<Description>Write .Net apps with a text editor, NuGet, and the power of Roslyn!</Description>
<PackageTags>roslyn csx script scriptcs</PackageTags>
<Description>scriptcs command line tool.</Description>
<AssemblyName>scriptcs</AssemblyName>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\ScriptCs.Core\Guard.cs" Link="Guard.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ScriptCs.Contracts\ScriptCs.Contracts.csproj" />
<ProjectReference Include="..\ScriptCs.Core\ScriptCs.Core.csproj" />
<ProjectReference Include="..\ScriptCs.Engine.Roslyn\ScriptCs.Engine.Roslyn.csproj" />
<ProjectReference Include="..\ScriptCs.Hosting\ScriptCs.Hosting.csproj" />
</ItemGroup>
</Project>