Skip to content

Commit

Permalink
Updated package information, added git ignore/attr.
Browse files Browse the repository at this point in the history
  • Loading branch information
sextondjc committed Oct 2, 2017
1 parent 915b06d commit 543e519
Show file tree
Hide file tree
Showing 8 changed files with 106 additions and 13 deletions.
17 changes: 17 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs diff=csharp

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
67 changes: 67 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk

# =========================
# Operating System Files
# =========================

# OSX
# =========================

.DS_Store
.AppleDouble
.LSOverride

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
/.nuget/nuget.exe
/.vs
/packages
*.ncrunchproject
*.ncrunchproject
*.ncrunchsolution
*.user
/Core/Syrx.Connectors.Databases.MySql/bin/Release
/Core/Syrx.Connectors.Databases.MySql/obj
/Core/Syrx.MySql/bin/Release
/Core/Syrx.MySql/obj
/Tests/Syrx.Commanders.Databases.Integration.Tests/bin/Release/netcoreapp2.0
/Tests/Syrx.Commanders.Databases.Integration.Tests/obj
/Tests/Syrx.MySql.Integration.Tests/bin/Release/netcoreapp2.0
/Tests/Syrx.MySql.Integration.Tests/obj
/Tests/Syrx.Tests.Common/bin/Release/netstandard2.0
/Tests/Syrx.Tests.Common/obj
/Tests/Syrx.Tests.Models/bin/Release/netstandard2.0
/Tests/Syrx.Tests.Models/obj
/_NCrunch_Syrx.MySql
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<Authors>@sextondjc</Authors>
<Company />
<Description>Syrx connector specifically for connecting to MySQL instances using the Syrx connector using the MySql.Data.MySqlClientFactory</Description>
<PackageLicenseUrl>https://sextondjc.github.io/Syrx/</PackageLicenseUrl>
<PackageProjectUrl>https://sextondjc.github.io/Syrx/</PackageProjectUrl>
<PackageReleaseNotes>1.0.0 release.</PackageReleaseNotes>
<PackageLicenseUrl>https://github.com/SyrxCommander/Syrx.MySql</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/SyrxCommander/Syrx.MySql</PackageProjectUrl>
<PackageReleaseNotes>Updated package information.</PackageReleaseNotes>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
</PropertyGroup>
Expand Down
16 changes: 9 additions & 7 deletions Core/Syrx.MySql/Syrx.MySql.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,20 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>@sextondjc</Authors>
<Authors></Authors>
<Company />
<Description>Package built specifically for MySql, contains all the necessary package references for simplified installation.</Description>
<PackageLicenseUrl>https://sextondjc.github.io/Syrx/</PackageLicenseUrl>
<PackageProjectUrl>https://sextondjc.github.io/Syrx/</PackageProjectUrl>
<RepositoryUrl>https://sextondjc.github.io/Syrx/</RepositoryUrl>
<PackageReleaseNotes>1.0.0 release.</PackageReleaseNotes>
<PackageLicenseUrl>https://github.com/SyrxCommander/Syrx.MySql</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/SyrxCommander/Syrx.MySql</PackageProjectUrl>
<RepositoryUrl>https://github.com/SyrxCommander/Syrx.MySql</RepositoryUrl>
<PackageReleaseNotes>• Updated package information.
• Updated to use Syrx.Commanders.Databases 1.1.0</PackageReleaseNotes>
<Version>1.1.0</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Syrx" Version="1.0.0" />
<PackageReference Include="Syrx.Commanders.Databases" Version="1.0.0" />
<PackageReference Include="Syrx" Version="1.1.0" />
<PackageReference Include="Syrx.Commanders.Databases" Version="1.1.0" />
<PackageReference Include="Syrx.Readers.Databases" Version="1.0.0" />
<PackageReference Include="Syrx.Settings.Databases" Version="1.0.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
<PackageReference Include="Syrx.Commanders.Databases" Version="1.0.0" />
<PackageReference Include="Syrx.Commanders.Databases" Version="1.1.0" />
<PackageReference Include="xunit" Version="2.2.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1078,7 +1078,7 @@
{
"Alias": "Syrx.Sql",
"ProviderName": "MySql.Data.MySqlClient",
"ConnectionString": "insert connection string here"
"ConnectionString": ""
}
]
}
2 changes: 1 addition & 1 deletion Tests/Syrx.Tests.Common/Syrx.Tests.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
<PackageReference Include="Syrx.Commanders.Databases" Version="1.0.0" />
<PackageReference Include="Syrx.Commanders.Databases" Version="1.1.0" />
<PackageReference Include="Syrx.Connectors.Databases.SqlServer" Version="1.0.0" />
</ItemGroup>

Expand Down
7 changes: 7 additions & 0 deletions license.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Copyright 2017 @sextondjc

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 comments on commit 543e519

Please sign in to comment.