-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
42 lines (39 loc) · 1.28 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
<Project>
<PropertyGroup>
<RunFrameworks>net7;net8</RunFrameworks>
<BaseFrameworks>netstandard2.0;netstandard2.1;$(RunFrameworks);</BaseFrameworks>
<AllFrameworks>$(BaseFrameworks);netframework4.6.2;</AllFrameworks>
<Version>3.6.1</Version>
<Authors>dimabezzubenkov, dev-team</Authors>
<RepositoryUrl>https://github.com/DevTeamHub/dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Company>Dev Team, Inc</Company>
<Copyright>Copyright (c) Dev Team, Inc 2023.</Copyright>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<IncludeContentInPack>true</IncludeContentInPack>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)LICENSE.md">
<Pack>true</Pack>
<PackagePath></PackagePath>
<Visible>False</Visible>
</None>
<None Include="$(MSBuildThisFileDirectory)icon.png">
<Pack>true</Pack>
<PackagePath></PackagePath>
<Visible>False</Visible>
</None>
<None Include="README.md">
<Pack>true</Pack>
<PackagePath></PackagePath>
<Visible>True</Visible>
</None>
</ItemGroup>
<PropertyGroup>
<NoWarn>IDE0079</NoWarn>
</PropertyGroup>
</Project>