Skip to content

Commit

Permalink
Run setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
guibranco committed Aug 13, 2024
1 parent aba5217 commit 201fe73
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 126 deletions.
2 changes: 1 addition & 1 deletion .wakatime-project
Original file line number Diff line number Diff line change
@@ -1 +1 @@
POC .NET template
POC .NET template
6 changes: 3 additions & 3 deletions POCTemplate.sln → POCBlockchain.sln
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@


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", "{CCFE3371-AE28-446A-B8D1-8D1027A2D23B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "POCTemplate", "Src\POCTemplate\POCTemplate.csproj", "{5E214FC8-0D9B-4DD7-B952-DA994D094EC4}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "POCBlockchain", "Src\POCBlockchain\POCBlockchain.csproj", "{5E214FC8-0D9B-4DD7-B952-DA994D094EC4}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{279F38EF-A29A-48E2-9201-BA9D5BACAF5B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "POCTemplate.Tests", "Tests\POCTemplate.Tests\POCTemplate.Tests.csproj", "{43CA48B4-6FC2-425E-82AF-19B643029326}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "POCBlockchain.Tests", "Tests\POCBlockchain.Tests\POCBlockchain.Tests.csproj", "{43CA48B4-6FC2-425E-82AF-19B643029326}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
36 changes: 17 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,29 @@
# PoC .NET template
# Project Title

A template repository for .NET PoC (Proof of Concept)
One Paragraph of project description goes here.

---
## Getting Started

- Create a new repository using this one as a template (click the green button at the top right of this page).
- Edit [README.md](README.md) file to align with your PoC.
- Change the solution and projects to suit your investigation/test/concept.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

## Installation Guide
### Prerequisites

Follow these steps to set up the project. This guide includes installation scripts for PowerShell, Shell/Bash, and Batch.
What things you need to install the software and how to install them

### PowerShell

```ps
.\install.ps1
```
Give examples
```

### Shell/Bash
### Installing

```bash
./install.sh
```
A step by step series of examples that tell you how to get a development env running

### Batch
Say what the step will be

```batch
.\install.bat
```
Give the example
```

Repeat until finished

End with an example of getting some data out of the system or using it for a little demo
29 changes: 0 additions & 29 deletions README.template.md

This file was deleted.

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

<PropertyGroup>
<OutputType>Exe</OutputType>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace POCTemplate;
namespace POCBlockchain;

internal static class Program
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Src\POCTemplate\POCTemplate.csproj" />
<ProjectReference Include="..\..\Src\POCBlockchain\POCBlockchain.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using FluentAssertions;

namespace POCTemplate.Tests;
namespace POCBlockchain.Tests;

public class UnitTest1
{
Expand Down
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
theme: jekyll-theme-cayman
title: PoC .NET - template
description: 🔬 Proof of Concept template repository for .NET
show_downloads: true
show_downloads: true
1 change: 0 additions & 1 deletion install.bat

This file was deleted.

35 changes: 0 additions & 35 deletions install.ps1

This file was deleted.

33 changes: 0 additions & 33 deletions install.sh

This file was deleted.

0 comments on commit 201fe73

Please sign in to comment.