-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathStormancer.Abstractions.Server.Users.csproj
More file actions
50 lines (42 loc) · 1.9 KB
/
Stormancer.Abstractions.Server.Users.csproj
File metadata and controls
50 lines (42 loc) · 1.9 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
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Company>Stormancer</Company>
<Authors>Stormancer</Authors>
<Version>1.0.0.1</Version>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<Description>Contains abstractions used by plugins that needs to integrate with the service locator system without depending on the whole users system.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<Version>$(Version)-pre</Version>
</PropertyGroup>
<PropertyGroup>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Stormancer.Abstractions.Core" Version="2.4.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Include="../../../../res/stormancer_128x128.png" Pack="true" PackagePath="\icon.png" />
</ItemGroup>
<ItemGroup>
<NugetPackages Include="$(TargetDir)../$(ProjectName).$(Version).nupkg; $(TargetDir)../$(ProjectName).$(Version).snupkg" />
<Pdbs Include="$(TargetDir)*.pdb" />
</ItemGroup>
<Target Name="PostPack" AfterTargets="Pack">
<Copy SourceFiles="@(NugetPackages)" DestinationFolder="$(ProjectDir)../../../../output/packages" />
<Copy SourceFiles="@(Pdbs)" DestinationFolder="$(ProjectDir)../../../../output/symbols/$(ConfigurationName)" />
</Target>
</Project>