Skip to content

Instantly share code, notes, and snippets.

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Linie punctata</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Punctata --->
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using StamAcasa.Api.Services.Excel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@tedchirvasiu
tedchirvasiu / replace.ps1
Created July 20, 2020 11:58
Replace file names recursively
Get-ChildItem -Recurse -Path *Prosoft.Templates.NetCore3AndReact* | Rename-Item -NewName { $_.Name.Replace('Prosoft.Templates.NetCore3AndReact','Prosoft.DisciplinaInConstructii') }