-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (24 loc) · 1.25 KB
/
Copy pathDirectory.Build.props
File metadata and controls
26 lines (24 loc) · 1.25 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
<Project>
<PropertyGroup>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- NuGet Metadata -->
<Version>1.0.0</Version>
<Authors>SmartWsdlKit Authors</Authors>
<Company>SmartWsdlKit</Company>
<Description>A lightweight, high-performance, enterprise-grade WSDL and SOAP client toolkit for .NET. Eliminates Connected Services and svcutil.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/open-source/SmartWsdlKit</RepositoryUrl>
<PackageTags>wsdl soap client soap11 soap12 xml xsd web-services dotnet-standard source-generator openapi json-schema</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" Condition="Exists('$(MSBuildThisFileDirectory)README.md') And !Exists('README.md')" />
</ItemGroup>
</Project>