Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dombrovsky committed May 6, 2023
1 parent 4cc1f02 commit 3b33f4b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,7 @@ dotnet_diagnostic.sa1600.severity = none
dotnet_diagnostic.SA1106.severity=suggestion

# NET Analyzers
dotnet_diagnostic.ca1812.severity = none
dotnet_diagnostic.ca1848.severity = none
dotnet_diagnostic.CA1040.severity=suggestion

Expand Down
10 changes: 7 additions & 3 deletions MutableOptions/MutableOptions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<PropertyGroup>
<PackageId>MutableOptions</PackageId>
<Version>1.0.0-alpha</Version>
<Version>1.0.0</Version>
<Authors>Volodymyr Dombrovskyi</Authors>
<Copyright>Copyright (c) 2022 Volodymyr Dombrovskyi</Copyright>
<PackageTags>options,ioptions,ioptionsmonitor,mutableoptionsmonitor,optionsmutator,mutable,writeable</PackageTags>
Expand All @@ -25,12 +25,16 @@ Microsoft.Extensions.Options.Mutable.IMutableOptionsMonitor</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>

<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>

<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<PropertyGroup>
<RunCodeAnalysis>false</RunCodeAnalysis>
Expand All @@ -57,7 +61,7 @@ Microsoft.Extensions.Options.Mutable.IMutableOptionsMonitor</Description>
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="6.0.0" />

<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 3b33f4b

Please sign in to comment.