-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNChronicle.File_NetStandard.csproj
45 lines (39 loc) · 1.88 KB
/
NChronicle.File_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
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.4</TargetFramework>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<AssemblyName>NChronicle.File</AssemblyName>
<RootNamespace>NChronicle.File</RootNamespace>
<Version>1.1.0</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<LangVersion>latest</LangVersion>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
<DocumentationFile>bin\Release\netstandard1.4\NChronicle.File.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<DocumentationFile>bin\Debug\netstandard1.4\NChronicle.File.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="**\*" />
<Compile Include="Configuration\FileChronicleLibraryConfiguration.cs" />
<Compile Include="Configuration\RetentionPolicyConfiguration.cs" />
<Compile Include="RetentionPolicy.cs" />
<Compile Include="Delegates\RetentionPolicyConfigurationDelegate.cs" />
<Compile Include="Interfaces\IRetentionPolicy.cs" />
<Compile Include="Delegates\FileChronicleLibraryConfigurationDelegate.cs" />
<Compile Include="Exceptions\InvalidFilePathException.cs" />
<Compile Include="Extensions\ConfigurationExtensions.cs" />
<Compile Include="FileChronicleLibrary.cs" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NChronicle.Core" Version="1.1.0" />
<PackageReference Include="System.IO.FileSystem" Version="4.3.0" />
<PackageReference Include="System.Reflection" Version="4.3.0" />
<PackageReference Include="System.Threading.Thread" Version="4.3.0" />
</ItemGroup>
</Project>