Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
bbce444
fix(packaging): split DomIds per module and make SharedValidation typ…
DanielaOlive Jul 15, 2026
06763f6
fix(tests): add InternalsVisibleTo for test assemblies
DanielaOlive Jul 16, 2026
dfe1ebd
revert: remove InternalsVisibleTo files, make extension classes public
DanielaOlive Jul 16, 2026
cd84a04
fix(build): split SharedValidation projitems to avoid CS0121 in downs…
DanielaOlive Jul 16, 2026
36e3564
feat: make ValidationException, InfraOpsException and InfraOpsSeriali…
DanielaOlive Jul 16, 2026
f452b58
fix(cs0433): use InternalsVisibleTo instead of recompiling SharedVali…
DanielaOlive Jul 16, 2026
c6a974a
bump version
DanielaOlive Jul 16, 2026
985d25c
fixed
DanielaOlive Jul 20, 2026
188e078
Add SDM.InfraOps.PackagingTests: regression test for CS0433 duplicate…
DanielaOlive Jul 20, 2026
b3c622e
Add SDM.InfraOps.Core: eliminate CS0433 duplicate public types across…
DanielaOlive Jul 20, 2026
ed4e907
Remove SharedValidation folder and shared project from solution
DanielaOlive Jul 21, 2026
d20b724
Clean up SharedMappers: remove dead projitems files
DanielaOlive Jul 21, 2026
636ae37
Fix SharedMappers.shproj: restore projitems with matching SharedGUID
DanielaOlive Jul 21, 2026
19a9570
Remove SharedMappers shared project from solution
DanielaOlive Jul 21, 2026
dddeccc
removed unecessary files
DanielaOlive Jul 21, 2026
00e92db
Revert "removed unecessary files"
DanielaOlive Jul 21, 2026
907eb76
Move DomIds and mapper files into their respective project folders
DanielaOlive Jul 21, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<Nullable>disable</Nullable>
<AssemblyName>Skyline.DataMiner.SDM.AssetManagement.Automation</AssemblyName>
<RootNamespace>Skyline.DataMiner.SDM.AssetManagement.Automation</RootNamespace>
<VersionSuffix Condition="'$(Configuration)' == 'Debug'">dev-028</VersionSuffix>
<VersionSuffix Condition="'$(Configuration)' == 'Debug'">dev-034</VersionSuffix>
<VersionPrefix>1.0.1</VersionPrefix>
<AssemblyVersion>0.2.3.28</AssemblyVersion>
<AssemblyVersion>0.2.3.34</AssemblyVersion>
<PackageTags>Skyline;DataMiner</PackageTags>
<PackageProjectUrl>https://skyline.be</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down
5 changes: 3 additions & 2 deletions SDM.AssetManagement.Common/SDM.AssetManagement.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<Nullable>disable</Nullable>
<AssemblyName>Skyline.DataMiner.SDM.AssetManagement.Common</AssemblyName>
<RootNamespace>Skyline.DataMiner.SDM.AssetManagement.Common</RootNamespace>
<VersionSuffix Condition="'$(Configuration)' == 'Debug'">dev-028</VersionSuffix>
<AssemblyVersion>0.2.3.28</AssemblyVersion>
<VersionSuffix Condition="'$(Configuration)' == 'Debug'">dev-034</VersionSuffix>
<AssemblyVersion>0.2.3.34</AssemblyVersion>
<VersionPrefix>1.0.1</VersionPrefix>
<PackageTags>Skyline;DataMiner</PackageTags>
<PackageProjectUrl>https://skyline.be</PackageProjectUrl>
Expand Down Expand Up @@ -45,6 +45,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\SDM.InfraOps.Core\SDM.InfraOps.Core.csproj" />
<ProjectReference Include="..\SDM.FacilityManagement.Common\SDM.FacilityManagement.Common.csproj" />
</ItemGroup>

Expand Down
Loading