Skip to content

Commit

Permalink
0.7.2 Added PropertyStyle option
Browse files Browse the repository at this point in the history
  • Loading branch information
CodySchrank committed Aug 15, 2021
1 parent 39e9b99 commit 6c8f584
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Example/Example.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
</PropertyGroup>

<ItemGroup>
<!-- <PackageReference Include="MTT" Version="0.6.4-*" PrivateAssets="All" /> -->
<PackageReference Include="MTT" Version="0.7.1" />
<!-- <PackageReference Include="MTT" Version="0.7.2-*" PrivateAssets="All" /> -->
<PackageReference Include="MTT" Version="0.7.2" />
</ItemGroup>

<Target Name="ConvertMain" BeforeTargets="PrepareForBuild">
<ConvertMain WorkingDirectory="Resources/" ConvertDirectory="models/" />
<ConvertMain WorkingDirectory="Resources/" ConvertDirectory="models/"/>
</Target>

</Project>
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ _WorkingDirectory_ is the input directory of the c# dtos (seperate multiple dire

_ConvertDirectory_ is the output directory of the ts interfaces

_AutoGeneratedTag_ (default true) show "/\* Auto Generated \*/" at the top of every file
_AutoGeneratedTag_ (default true) show "/\* Auto Generated \*/" at the top of every file. If set to _false_ then no tags are generated

_EnumValues_ (default int enums) if set to _Strings_, generates typescript [string enums](https://www.typescriptlang.org/docs/handbook/enums.html#string-enums)

Expand All @@ -38,7 +38,7 @@ _PropertyStyle_ (default is CamelCase) if set to _PascalCase_, changes the prope
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MTT" Version="0.7.1"/>
<PackageReference Include="MTT" Version="0.7.2"/>
</ItemGroup>

<Target Name="Convert" BeforeTargets="PrepareForBuild">
Expand Down
2 changes: 1 addition & 1 deletion Source/MTT/MTT.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<!-- Change the default location where NuGet will put the build output -->
<BuildOutputTargetFolder>tasks</BuildOutputTargetFolder>
<!-- set the version automatically -->
<VersionPrefix>0.7.1</VersionPrefix>
<VersionPrefix>0.7.2</VersionPrefix>
<!--
The suffix is required because nuget will only update if the package is newer, this tricks it.
note: 0.1.5 has precedence over 0.1.5-build123412341
Expand Down

0 comments on commit 6c8f584

Please sign in to comment.