Skip to content

Commit 77c7598

Browse files
authored
Merge pull request #75 from ricaun-io/develop
Version 1.9.1
2 parents bd025ce + d82c818 commit 77c7598

11 files changed

Lines changed: 56 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [1.9.1] / 2025-03-05 - 2025-03-14
8+
### Features
9+
- Support localized `InstallLocation` path. (Fix: #74)
10+
### Console
11+
- Update `ricaun.Revit.Installation` to `1.3.2`. (Fix: #74)
12+
### Shared
13+
- Add `ricaun.RevitTest.Shared.Tests` to test mapper.
14+
715
## [1.9.0] / 2025-02-07 - 2025-02-19
816
### Features
917
- Update `ricaun.NUnit` support `TestFixture` - Version 1.5.0.
@@ -586,6 +594,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
586594
- [x] TestsFail
587595

588596
[vNext]: ../../compare/1.0.0...HEAD
597+
[1.9.1]: ../../compare/1.9.0...1.9.1
589598
[1.9.0]: ../../compare/1.8.0...1.9.0
590599
[1.8.0]: ../../compare/1.7.1...1.8.0
591600
[1.7.1]: ../../compare/1.7.0...1.7.1

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>1.9.0</Version>
3+
<Version>1.9.1</Version>
44
</PropertyGroup>
55
</Project>
Binary file not shown.

ricaun.RevitTest.Console/ricaun.RevitTest.Console.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
</ItemGroup>
4848

4949
<ItemGroup>
50-
<PackageReference Include="ricaun.Revit.Installation" Version="*" />
50+
<PackageReference Include="ricaun.Revit.Installation" Version="*-*" />
5151
<PackageReference Include="ricaun.RevitAPI.Fake.References.RevitAPIUI" Version="*" />
5252
<PackageReference Include="Microsoft.VisualStudio.Interop" Version="*" />
5353
</ItemGroup>

ricaun.RevitTest.Shared/Mappers/MapperPropertyChangedTests.cs renamed to ricaun.RevitTest.Shared.Tests/Mappers/MapperPropertyChangedTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using NUnit.Framework;
2-
using NUnit.Framework.Internal;
2+
using ricaun.RevitTest.Shared.Mappers;
33
using System;
44
using System.ComponentModel;
55
using System.Runtime.CompilerServices;
66

7-
namespace ricaun.RevitTest.Shared.Mappers
7+
namespace ricaun.RevitTest.Shared.Tests.Mappers
88
{
99
//<!-- Fody -->
1010
//<ItemGroup>
@@ -40,7 +40,7 @@ private void NotifyPropertyChanged([CallerMemberName] string propertyName = "")
4040
}
4141

4242
[Test]
43-
public void Test()
43+
public void Test_Destination_PropertyChanged()
4444
{
4545
var source = new TestClass() { TestProperty = "text" };
4646
var destination = new TestDestination();

ricaun.RevitTest.Shared/Mappers/MapperTests.cs renamed to ricaun.RevitTest.Shared.Tests/Mappers/MapperTests.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using NUnit.Framework;
2+
using ricaun.RevitTest.Shared.Mappers;
23

3-
namespace ricaun.RevitTest.Shared.Mappers
4+
namespace ricaun.RevitTest.Shared.Tests.Mappers
45
{
56
internal class MapperTests
67
{
@@ -15,7 +16,7 @@ public class TestDestination
1516
}
1617

1718
[Test]
18-
public void Test()
19+
public void Test_Mapper_NotifyPropertyChanged()
1920
{
2021
var source = new TestClass() { TestProperty = "text" };
2122
var destination = new TestDestination();
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net45;net46;net6.0-windows;net8.0-windows</TargetFrameworks>
5+
<IsPackable>false</IsPackable>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<PackageReference Include="NUnit" Version="3.13.3" />
10+
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
12+
</ItemGroup>
13+
14+
<ItemGroup>
15+
<ProjectReference Include="..\ricaun.RevitTest.Shared\ricaun.RevitTest.Shared.csproj" />
16+
</ItemGroup>
17+
18+
<!-- Fody -->
19+
<ItemGroup>
20+
<PackageReference Include="PropertyChanged.Fody" Version="3.*" IncludeAssets="build; compile" PrivateAssets="all" />
21+
</ItemGroup>
22+
<ItemGroup>
23+
<Folder Include="Mappers\" />
24+
</ItemGroup>
25+
<PropertyGroup>
26+
<WeaverConfiguration>
27+
<Weavers>
28+
<PropertyChanged />
29+
</Weavers>
30+
</WeaverConfiguration>
31+
</PropertyGroup>
32+
33+
</Project>

ricaun.RevitTest.Shared/ricaun.RevitTest.Shared.csproj

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,6 @@
5757
<Copyright>Copyright © $(Company) $(CopyrightYears)</Copyright>
5858
</PropertyGroup>
5959

60-
<!--Tests-->
61-
<ItemGroup>
62-
<Compile Remove="Mappers\MapperPropertyChangedTests.cs" />
63-
<Compile Remove="Mappers\MapperTests.cs" />
64-
</ItemGroup>
65-
6660
<ItemGroup>
6761
<PackageReference Include="ricaun.NamedPipeWrapper.Json" Version="*" />
6862
<PackageReference Include="ricaun.NUnit" Version="*" />
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)