forked from DerivcoIpswich/dsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDSharp.Build.csproj
More file actions
34 lines (31 loc) · 1.02 KB
/
Copy pathDSharp.Build.csproj
File metadata and controls
34 lines (31 loc) · 1.02 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
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
<AssemblyName>DSharp.Build</AssemblyName>
<RootNamespace>DSharp.Build</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\FileInputStreamSource.cs">
<Link>FileInputStreamSource.cs</Link>
</Compile>
<Compile Include="..\FileOutputStreamSource.cs">
<Link>FileOutputStreamSource.cs</Link>
</Compile>
<Compile Include="..\ResourceFile.cs">
<Link>ResourceFile.cs</Link>
</Compile>
<Compile Include="..\ResXItem.cs">
<Link>ResXItem.cs</Link>
</Compile>
<Compile Include="..\ResXParser.cs">
<Link>ResXParser.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="15.6.85" />
<PackageReference Include="NUglify" Version="1.5.13" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DSharp.Compiler\DSharp.Compiler.csproj" />
</ItemGroup>
</Project>