-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNChronicle.Console_NetStandard.csproj
40 lines (34 loc) · 1.59 KB
/
NChronicle.Console_NetStandard.csproj
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
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.4</TargetFramework>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<RootNamespace>NChronicle.Console</RootNamespace>
<AssemblyName>NChronicle.Console</AssemblyName>
<LangVersion>7</LangVersion>
<Version>1.1.0</Version>
<Description />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NETSTANDARD;</DefineConstants>
<OutputPath>bin\Debug\</OutputPath>
<DocumentationFile>bin\Debug\netstandard1.4\NChronicle.Console.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;RELEASE;NETSTANDARD1_4;NETSTANDARD;</DefineConstants>
<OutputPath>bin\Release\</OutputPath>
<DebugType>none</DebugType>
<DebugSymbols>False</DebugSymbols>
<DocumentationFile>bin\Release\netstandard1.4\NChronicle.Console.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="**\*" />
<Compile Include="Extensions\ConfigurationExtensions.cs" />
<Compile Include="Delegates\ConsoleChronicleLibraryConfigurationDelegate.cs" />
<Compile Include="ConsoleChronicleLibrary.cs" />
<Compile Include="Configuration\ConsoleChronicleLibraryConfiguration.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NChronicle.Core" Version="1.1.0" />
<PackageReference Include="System.Threading.Thread" Version="4.3.0" />
</ItemGroup>
</Project>