├── README.md ├── rename.json ├── root ├── .gitignore ├── name.Tests │ ├── Tests.cs │ ├── name.Tests.csproj │ └── packages.config ├── name.sln └── name │ ├── Properties │ └── AssemblyInfo.cs │ └── name.csproj └── template.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosami/grunt-init-csharpsolution/HEAD/README.md -------------------------------------------------------------------------------- /rename.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /root/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosami/grunt-init-csharpsolution/HEAD/root/.gitignore -------------------------------------------------------------------------------- /root/name.Tests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosami/grunt-init-csharpsolution/HEAD/root/name.Tests/Tests.cs -------------------------------------------------------------------------------- /root/name.Tests/name.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosami/grunt-init-csharpsolution/HEAD/root/name.Tests/name.Tests.csproj -------------------------------------------------------------------------------- /root/name.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosami/grunt-init-csharpsolution/HEAD/root/name.Tests/packages.config -------------------------------------------------------------------------------- /root/name.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosami/grunt-init-csharpsolution/HEAD/root/name.sln -------------------------------------------------------------------------------- /root/name/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosami/grunt-init-csharpsolution/HEAD/root/name/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /root/name/name.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosami/grunt-init-csharpsolution/HEAD/root/name/name.csproj -------------------------------------------------------------------------------- /template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosami/grunt-init-csharpsolution/HEAD/template.js --------------------------------------------------------------------------------