Skip to content

Commit

Permalink
feat: add model-utils project (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alxandr committed Mar 6, 2025
1 parent 116d654 commit d590c5c
Show file tree
Hide file tree
Showing 7 changed files with 455 additions and 337 deletions.
10 changes: 10 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,16 @@
"xpath": "//Project/PropertyGroup/Version"
}
]
},
"src/Altinn.Authorization.ModelUtils": {
"component": "Altinn.Authorization.ModelUtils",
"extra-files": [
{
"type": "xml",
"path": "Version.props",
"xpath": "//Project/PropertyGroup/Version"
}
]
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{827E0CD3-B72D-47B6-A68D-7590B98EB39B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Altinn.Authorization.ModelUtils", "src\ModelUtils\Altinn.Authorization.ModelUtils.csproj", "{09291A6E-0D96-47F5-8569-6245E6BE7E42}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{0C88DD14-F956-CE84-757C-A364CCF449FC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Altinn.Authorization.ModelUtils.Tests", "test\ModelUtils.Tests\Altinn.Authorization.ModelUtils.Tests.csproj", "{75F65DFE-B770-450E-80EF-76E36C177BE0}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{09291A6E-0D96-47F5-8569-6245E6BE7E42}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{09291A6E-0D96-47F5-8569-6245E6BE7E42}.Debug|Any CPU.Build.0 = Debug|Any CPU
{09291A6E-0D96-47F5-8569-6245E6BE7E42}.Debug|x64.ActiveCfg = Debug|Any CPU
{09291A6E-0D96-47F5-8569-6245E6BE7E42}.Debug|x64.Build.0 = Debug|Any CPU
{09291A6E-0D96-47F5-8569-6245E6BE7E42}.Debug|x86.ActiveCfg = Debug|Any CPU
{09291A6E-0D96-47F5-8569-6245E6BE7E42}.Debug|x86.Build.0 = Debug|Any CPU
{09291A6E-0D96-47F5-8569-6245E6BE7E42}.Release|Any CPU.ActiveCfg = Release|Any CPU
{09291A6E-0D96-47F5-8569-6245E6BE7E42}.Release|Any CPU.Build.0 = Release|Any CPU
{09291A6E-0D96-47F5-8569-6245E6BE7E42}.Release|x64.ActiveCfg = Release|Any CPU
{09291A6E-0D96-47F5-8569-6245E6BE7E42}.Release|x64.Build.0 = Release|Any CPU
{09291A6E-0D96-47F5-8569-6245E6BE7E42}.Release|x86.ActiveCfg = Release|Any CPU
{09291A6E-0D96-47F5-8569-6245E6BE7E42}.Release|x86.Build.0 = Release|Any CPU
{75F65DFE-B770-450E-80EF-76E36C177BE0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{75F65DFE-B770-450E-80EF-76E36C177BE0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{75F65DFE-B770-450E-80EF-76E36C177BE0}.Debug|x64.ActiveCfg = Debug|Any CPU
{75F65DFE-B770-450E-80EF-76E36C177BE0}.Debug|x64.Build.0 = Debug|Any CPU
{75F65DFE-B770-450E-80EF-76E36C177BE0}.Debug|x86.ActiveCfg = Debug|Any CPU
{75F65DFE-B770-450E-80EF-76E36C177BE0}.Debug|x86.Build.0 = Debug|Any CPU
{75F65DFE-B770-450E-80EF-76E36C177BE0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{75F65DFE-B770-450E-80EF-76E36C177BE0}.Release|Any CPU.Build.0 = Release|Any CPU
{75F65DFE-B770-450E-80EF-76E36C177BE0}.Release|x64.ActiveCfg = Release|Any CPU
{75F65DFE-B770-450E-80EF-76E36C177BE0}.Release|x64.Build.0 = Release|Any CPU
{75F65DFE-B770-450E-80EF-76E36C177BE0}.Release|x86.ActiveCfg = Release|Any CPU
{75F65DFE-B770-450E-80EF-76E36C177BE0}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{09291A6E-0D96-47F5-8569-6245E6BE7E42} = {827E0CD3-B72D-47B6-A68D-7590B98EB39B}
{75F65DFE-B770-450E-80EF-76E36C177BE0} = {0C88DD14-F956-CE84-757C-A364CCF449FC}
EndGlobalSection
EndGlobal
7 changes: 7 additions & 0 deletions src/Altinn.Authorization.ModelUtils/Version.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<Project>

<PropertyGroup>
<Version>0.0.0</Version>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<ItemGroup>
<PackageReference Include="CommunityToolkit.Diagnostics" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\ModelUtils\Altinn.Authorization.ModelUtils.csproj" />
</ItemGroup>

</Project>
1 change: 1 addition & 0 deletions src/Altinn.Authorization.ModelUtils/version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.0
Loading

0 comments on commit d590c5c

Please sign in to comment.