-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathStormancer.Server.Plugins.Notification.csproj
More file actions
46 lines (43 loc) · 2.06 KB
/
Stormancer.Server.Plugins.Notification.csproj
File metadata and controls
46 lines (43 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Company>Stormancer</Company>
<Authors>Stormancer</Authors>
<Version>3.1.0.11</Version>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<Description>Provides Party related features to a Stormancer server application.</Description>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include="../../../../res/stormancer_128x128.png" Pack="true" PackagePath="\icon.png" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<Version>$(Version)-pre</Version>
</PropertyGroup>
<ItemGroup>
<NugetPackages Include="$(TargetDir)../$(ProjectName).$(Version).nupkg; $(TargetDir)../$(ProjectName).$(Version).snupkg" />
<cpp Include="$(ProjectDir)../cpp/*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Api\Stormancer.Server.Plugins.Api.S2SProxyGenerator\Stormancer.Server.Plugins.Api.S2SProxyGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<ProjectReference Include="..\..\Configuration\Stormancer.Server.Plugins.Configuration\Stormancer.Server.Plugins.Configuration.csproj" />
<ProjectReference Include="..\..\Users\Stormancer.Server.Plugins.Users\Stormancer.Server.Plugins.Users.csproj" />
</ItemGroup>
<Target Name="PostPack" AfterTargets="Pack">
<Copy SourceFiles="@(NugetPackages)" DestinationFolder="$(ProjectDir)../../../../output/packages" />
</Target>
</Project>