Added changelog and improved readme
This commit is contained in:
parent
6c1cbbbc0d
commit
2555566dd5
4 changed files with 44 additions and 2 deletions
4
Changelog.md
Normal file
4
Changelog.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# Changelog
|
||||||
|
|
||||||
|
# v0.1
|
||||||
|
The initial release.
|
27
README.md
27
README.md
|
@ -1,3 +1,28 @@
|
||||||
# cscz
|
# cscz
|
||||||
|
The one and only C♯ Class Generator.
|
||||||
|
|
||||||
The only and only C♯ Class Generator.
|
To use, build the project (F8 in Monodevelop, CTRL + SHIFT + B in Visual Studio) and then pipe your compressed class definition file into it. Example definitions:
|
||||||
|
|
||||||
|
```csharp
|
||||||
|
# Shop
|
||||||
|
u c
|
||||||
|
decimal balance
|
||||||
|
float lat
|
||||||
|
float long
|
||||||
|
List<TimeSpan> openingHours
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
```csharp
|
||||||
|
# Model3D
|
||||||
|
u OpenTK
|
||||||
|
u OpenTK.Graphics
|
||||||
|
|
||||||
|
ModelUtility model
|
||||||
|
ShaderUtility shaderProgram
|
||||||
|
|
||||||
|
Matrix4 transformation
|
||||||
|
Vector3 position
|
||||||
|
```
|
||||||
|
|
||||||
|
See the [Changelog](https://git.starbeamrainbowlabs.com/sbrl/cscz/src/master/Changelog.md) for a summary of what's changed between releases.
|
||||||
|
|
13
cscz.sln
13
cscz.sln
|
@ -3,6 +3,14 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio 2012
|
# Visual Studio 2012
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cscz", "cscz\cscz.csproj", "{3DE7A812-1AB9-483F-A785-4497FC8FDF2C}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cscz", "cscz\cscz.csproj", "{3DE7A812-1AB9-483F-A785-4497FC8FDF2C}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{1BBC87F8-DBD7-4ACE-8D8B-E4D719426A24}"
|
||||||
|
ProjectSection(SolutionItems) = preProject
|
||||||
|
.gitignore = .gitignore
|
||||||
|
LICENSE = LICENSE
|
||||||
|
README.md = README.md
|
||||||
|
Changelog.md = Changelog.md
|
||||||
|
EndProjectSection
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|x86 = Debug|x86
|
Debug|x86 = Debug|x86
|
||||||
|
@ -14,4 +22,9 @@ Global
|
||||||
{3DE7A812-1AB9-483F-A785-4497FC8FDF2C}.Release|x86.ActiveCfg = Release|x86
|
{3DE7A812-1AB9-483F-A785-4497FC8FDF2C}.Release|x86.ActiveCfg = Release|x86
|
||||||
{3DE7A812-1AB9-483F-A785-4497FC8FDF2C}.Release|x86.Build.0 = Release|x86
|
{3DE7A812-1AB9-483F-A785-4497FC8FDF2C}.Release|x86.Build.0 = Release|x86
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
|
GlobalSection(NestedProjects) = preSolution
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(MonoDevelopProperties) = preSolution
|
||||||
|
description = The C# Class Generator.
|
||||||
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
<RootNamespace>cscz</RootNamespace>
|
<RootNamespace>cscz</RootNamespace>
|
||||||
<AssemblyName>cscz</AssemblyName>
|
<AssemblyName>cscz</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
<Description>The C# Class Generator.</Description>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
@ -26,7 +27,6 @@
|
||||||
</CustomCommands>
|
</CustomCommands>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<Optimize>true</Optimize>
|
<Optimize>true</Optimize>
|
||||||
<OutputPath>bin\Release</OutputPath>
|
<OutputPath>bin\Release</OutputPath>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
|
Loading…
Reference in a new issue