-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlets.Modeling.TestPlanStructure.csproj
More file actions
27 lines (27 loc) · 1.12 KB
/
Plets.Modeling.TestPlanStructure.csproj
File metadata and controls
27 lines (27 loc) · 1.12 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk" TargetFramework=".NETStandard,Version=v2.1" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<AssemblyName>Plets.Modeling.TestPlanStructure</AssemblyName>
<OutputPath>../../build</OutputPath>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../ControlAndConversionStructures/Plets.Core.ControlAndConversionStructures.csproj">
</ProjectReference>
<ProjectReference Include="../ControlStructure/Plets.Core.ControlStructure.csproj">
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="./Source/*.cs" />
</ItemGroup>
<Target Name="Build">
<Csc Sources="@(Compile)" References="@(Reference)" OutputAssembly="$(OutputPath)/$(AssemblyName).dll" />
</Target>
</Project>