-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
32 lines (26 loc) · 1.06 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
<Project>
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>11.0</LangVersion>
<FileVersion>0.1.0.0</FileVersion>
<ProductVersion>0.1.0.0</ProductVersion>
<AssemblyVersion>0.1.0.0</AssemblyVersion>
<Version>0.1.0</Version>
<RepositoryType>git</RepositoryType>
<RootNamespace>AntDesign.Extensions</RootNamespace>
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
<TypeScriptEnableIncrementalMSBuild>false</TypeScriptEnableIncrementalMSBuild>
</PropertyGroup>
<ItemGroup>
<Script Include="**"/>
<Script Remove="**.d.ts"/>
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;AntdExperimental</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;AntdExperimental</NoWarn>
</PropertyGroup>
</Project>