-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWikiled.Twitter.Tests.csproj
More file actions
42 lines (36 loc) · 1.64 KB
/
Wikiled.Twitter.Tests.csproj
File metadata and controls
42 lines (36 loc) · 1.64 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp2.2</TargetFrameworks>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Moq" Version="4.10.1" />
<PackageReference Include="NLog" Version="4.6.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="NUnit" Version="3.12.0" />
<packagereference Include="Microsoft.NET.Test.Sdk" Version="16.1.0"></packagereference>
<packagereference Include="NUnit3TestAdapter" Version="3.13.0" />
<PackageReference Include="TweetinviAPI" Version="4.0.0" />
<PackageReference Include="NLog.Extensions.Logging" Version="1.5.0" />
<PackageReference Include="Wikiled.RedisInside" Version="3.2.101.11" />
</ItemGroup>
<ItemGroup>
<None Update="Data\data_20160311_1115.dat">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="NLog.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="vendors.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Wikiled.Twitter\Wikiled.Twitter.csproj" />
</ItemGroup>
<Target Name="ForceGenerationOfBindingRedirects" AfterTargets="ResolveAssemblyReferences" BeforeTargets="GenerateBindingRedirects" Condition="'$(AutoGenerateBindingRedirects)' == 'true'">
<PropertyGroup>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
</PropertyGroup>
</Target>
</Project>