-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWikiled.Twitter.csproj
More file actions
40 lines (34 loc) · 1.43 KB
/
Wikiled.Twitter.csproj
File metadata and controls
40 lines (34 loc) · 1.43 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>NETSTANDARD2.0</TargetFrameworks>
<Authors>Wikiled</Authors>
<Description>Twitter Monitor</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<ProjectUrl>https://github.com/AndMu/TwitterMonitor</ProjectUrl>
</PropertyGroup>
<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Properties\**" />
<EmbeddedResource Remove="Properties\**" />
<None Remove="Properties\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Autofac" Version="4.9.2" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
<PackageReference Include="morelinq" Version="3.1.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="System.Reactive" Version="4.1.5" />
<PackageReference Include="TweetinviAPI" Version="4.0.0" />
<PackageReference Include="Wikiled.Common" Version="1.1.7" />
<PackageReference Include="Wikiled.Common.Utilities" Version="1.1.19" />
<PackageReference Include="Wikiled.Redis" Version="3.3.0" />
<PackageReference Include="Wikiled.Text.Analysis" Version="1.7.12" />
</ItemGroup>
<ItemGroup>
<None Update="vendors.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>