-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
47 lines (41 loc) · 1.4 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<Version>1.0.26</Version>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<LangVersion>11.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup>
<Configurations>Debug;Release</Configurations>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/weknow-network/Weknow-Json-Extensions</RepositoryUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageIconUrl />
<PackageTags>weknow, DI, Injection, IoC, Dependency</PackageTags>
<RootNamespace>Bnaya.Samples</RootNamespace>
<Copyright>Weknow ©</Copyright>
<Authors>Bnaya Eshet</Authors>
<Company>Weknow</Company>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<PackageReleaseNotes></PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Collections" />
<Using Include="System.Collections.Immutable" />
<Using Include="System.Collections.Concurrent" />
<Using Include="System.Text.Json" />
<Using Include="System.Net.Http" />
<Using Include="System.Net.Http.Json" />
</ItemGroup>
</Project>