-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNChronicle.Core_NetStandard.csproj
More file actions
48 lines (42 loc) · 2.06 KB
/
NChronicle.Core_NetStandard.csproj
File metadata and controls
48 lines (42 loc) · 2.06 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.4</TargetFramework>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<RootNamespace>NChronicle.Core</RootNamespace>
<AssemblyName>NChronicle.Core</AssemblyName>
<LangVersion>7</LangVersion>
<Version>1.1.0</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NETSTANDARD;</DefineConstants>
<OutputPath>bin\Debug\</OutputPath>
<DocumentationFile>bin\Debug\netstandard1.4\NChronicle.Core.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.Core.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="**\*" />
<Compile Include="Delegates\ChronicleConfigurationDelegate.cs" />
<Compile Include="Delegates\ConfigurationSubscriberDelegate.cs" />
<Compile Include="Model\ChronicleConfiguration.cs" />
<Compile Include="Model\ChronicleLevel.cs" />
<Compile Include="Model\Chronicle.cs" />
<Compile Include="Interfaces\IChronicle.cs" />
<Compile Include="Interfaces\IChronicleLibrary.cs" />
<Compile Include="Model\ChronicleRecord.cs" />
<Compile Include="NChronicle.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.IO.FileSystem" Version="4.3.0" />
<PackageReference Include="System.IO.FileSystem.Watcher" Version="4.3.0" />
<PackageReference Include="System.Reflection" Version="4.3.0" />
<PackageReference Include="System.Threading.Timer" Version="4.3.0" />
<PackageReference Include="System.Xml.ReaderWriter" Version="4.3.0" />
<PackageReference Include="System.Xml.XmlSerializer" Version="4.3.0" />
</ItemGroup>
</Project>