Skip to content

Commit

Permalink
Merge pull request #363 from runceel/main
Browse files Browse the repository at this point in the history
Release v8.0.5
  • Loading branch information
runceel authored Mar 24, 2022
2 parents ca593a0 + c18b25d commit 23cc02a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Install dependencies
run: dotnet restore ReactiveProperty.sln
- name: Build
run: dotnet build ReactiveProperty.sln -c Release
run: dotnet build ReactiveProperty.sln -c Release /p:ContinuousIntegrationBuild=True /p:EmbedUntrackedSources=True
- name: Test
run: dotnet test ReactiveProperty.sln --no-restore --verbosity normal
- name: Copy package files
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,4 @@ BuildTools/*.nupkg
project.lock.json
/.vs
UpgradeLog.htm
*.AssemblyAttributes
7 changes: 6 additions & 1 deletion Source/SharedProperties.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<RootNamespace>Reactive.Bindings</RootNamespace>
<Version>8.0.4</Version>
<Version>8.0.5</Version>
<Authors>neuecc xin9le okazuki</Authors>
<PackageProjectUrl>https://github.com/runceel/ReactiveProperty</PackageProjectUrl>
<PackageTags>rx mvvm async rx-main reactive</PackageTags>
Expand All @@ -13,13 +13,18 @@
<RepositoryType>git</RepositoryType>
<LangVersion>10.0</LangVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<None Include="../../Assets/ReactivePropertyIcon_100x100.png" LinkBase="Assets" Pack="true" PackagePath="/" />
<None Include="../../README.md" Pack="true" PackagePath="/" />
</ItemGroup>
<Target Name="temp" BeforeTargets="BeforeCompile" AfterTargets="GenerateAssemblyInfo"></Target>
</Project>

0 comments on commit 23cc02a

Please sign in to comment.