-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjabber.csproj
More file actions
33 lines (29 loc) · 1.25 KB
/
jabber.csproj
File metadata and controls
33 lines (29 loc) · 1.25 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
<PackageProjectUrl>https://github.com/mlohstroh/incursion-dotnet</PackageProjectUrl>
<RepositoryUrl>https://github.com/mlohstroh/incursion-dotnet</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
<Authors>M Lohstroh, S Grant</Authors>
<Company>Imperium Incursions</Company>
<Product>XMMP Jabber Bot</Product>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ESI.NET" Version="2.4.1" />
<PackageReference Include="Matrix.vNext" Version="2.1.0" />
<PackageReference Include="Matrix.vNext.Extensions" Version="2.1.0" />
<PackageReference Include="Matrix.vNext.Srv" Version="2.1.0" />
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="StackExchange.Redis" Version="2.0.519" />
</ItemGroup>
<ItemGroup>
<None Update=".env">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="scripts\launch">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>