{"id":7585,"date":"2023-03-20T12:08:57","date_gmt":"2023-03-20T11:08:57","guid":{"rendered":"https:\/\/solidt.eu\/site\/?p=7585"},"modified":"2023-11-24T11:37:15","modified_gmt":"2023-11-24T10:37:15","slug":"replace-version-in-assemblyinfo-cs","status":"publish","type":"post","link":"https:\/\/solidt.eu\/site\/replace-version-in-assemblyinfo-cs\/","title":{"rendered":"Replace version in AssemblyInfo.cs"},"content":{"rendered":"\n<div style=\"height: 250px; position:relative; margin-bottom: 50px;\" class=\"wp-block-simple-code-block-ace\"><pre class=\"wp-block-simple-code-block-ace\" style=\"position:absolute;top:0;right:0;bottom:0;left:0\" data-mode=\"powershell\" data-theme=\"monokai\" data-fontsize=\"14\" data-lines=\"Infinity\" data-showlines=\"true\" data-copy=\"false\">$ver = $env:MY_PACKAGE_VERSION\n$files = Get-ChildItem -Path \".\" -Filter AssemblyInfo.cs -Recurse\nforeach ($file in $files) {\n    $fn = $file.FullName\n    Write-Host \"Replacing '$ver' in $fn\"\n    $c = Get-Content -Path $fn -Raw\n    $c = $c -replace '(?m)(?&lt;=AssemblyVersion\\(\").*(?=\"\\))', $ver -replace '(?m)(?&lt;=AssemblyFileVersion\\(\").*(?=\"\\))', $ver\n    Set-Content -Path $fn -Value $c\n    $c = Get-Content -Path $fn -Raw\n    $n = ([regex]::Matches($c, [Regex]::Escape($ver))).count;\n    Write-Host \"Replaced $n times\"\n}<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[6],"tags":[],"class_list":["post-7585","post","type-post","status-publish","format-standard","hentry","category-dotnet"],"_links":{"self":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/7585","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/comments?post=7585"}],"version-history":[{"count":3,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/7585\/revisions"}],"predecessor-version":[{"id":8155,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/7585\/revisions\/8155"}],"wp:attachment":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/media?parent=7585"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/categories?post=7585"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/tags?post=7585"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}