forked from DerivcoIpswich/dsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDSharp.Shell.csproj
More file actions
28 lines (25 loc) · 910 Bytes
/
Copy pathDSharp.Shell.csproj
File metadata and controls
28 lines (25 loc) · 910 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<RootNamespace>DSharp.Shell</RootNamespace>
<AssemblyName>DSharp.Shell</AssemblyName>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(SolutionDir)DSharp.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\FileInputStreamSource.cs">
<Link>FileInputStreamSource.cs</Link>
</Compile>
<Compile Include="..\FileOutputStreamSource.cs">
<Link>FileOutputStreamSource.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="15.6.85" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DSharp.Compiler\DSharp.Compiler.csproj" />
</ItemGroup>
</Project>