Skip to content

Commit a354934

Browse files
committed
suppress xml warnings!
1 parent c4ab058 commit a354934

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

MaterialDesignThemes.Wpf/MaterialDesignThemes.Wpf.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
<ErrorReport>prompt</ErrorReport>
3434
<WarningLevel>4</WarningLevel>
3535
<DocumentationFile>bin\Release\MaterialDesignThemes.Wpf.XML</DocumentationFile>
36+
<NoWarn>CS1591</NoWarn>
3637
</PropertyGroup>
3738
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'AppVeyor|AnyCPU'">
3839
<OutputPath>bin\AppVeyor\</OutputPath>
@@ -43,6 +44,7 @@
4344
<ErrorReport>prompt</ErrorReport>
4445
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
4546
<DocumentationFile>bin\AppVeyor\MaterialDesignThemes.Wpf.XML</DocumentationFile>
47+
<NoWarn>CS1591</NoWarn>
4648
</PropertyGroup>
4749
<ItemGroup>
4850
<Compile Include="..\paket-files\ControlzEx\ControlzEx\src\ControlzEx\PackIconBase.cs">

appveyor.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
assembly_info:
1010
patch: true
1111
file: '**\AssemblyInfo.*'
12-
assembly_version: '{version}'
13-
assembly_file_version: '{version}'
14-
assembly_informational_version: '{version}'
12+
assembly_version: '2.0.0.{build}'
13+
assembly_file_version: '2.0.0.{build}'
14+
assembly_informational_version: '2.0.0.{build}'
1515
environment:
1616
RestorePackages: false
1717
install:
@@ -22,12 +22,12 @@
2222
project: MaterialDesignToolkit.Wpf.sln
2323
verbosity: minimal
2424
after_build:
25-
- ps: nuget pack MaterialDesignThemes.nuspec -Version 2.0.0-ci{build}
25+
- ps: nuget pack MaterialDesignThemes.nuspec -Version $env:APPVEYOR_BUILD_VERSION
2626
artifacts:
2727
- path: '**\MaterialDesignThemes.*.nupkg'
2828
- path: bin\**\*.*
2929

30-
version: 2.0.0.{build}
30+
version: 2.0.0.ci-{build}
3131
deploy:
3232
- provider: NuGet
3333
api_key:

0 commit comments

Comments
 (0)