making it .net 4.0 and sql only for now

This commit is contained in:
2020-02-12 10:11:02 -05:00
parent 59e63a7d4e
commit fd67db4153
11 changed files with 56 additions and 3 deletions

Binary file not shown.

View File

@@ -21,3 +21,6 @@ C:\Users\DieSonne99\Desktop\Sdaleo\!app\bin\x86\Release\!app.pdb
C:\Users\DieSonne99\Desktop\Sdaleo\!app\bin\x86\Release\Sdaleo.dll
C:\Users\DieSonne99\Desktop\Sdaleo\!app\bin\x86\Release\Advantage.Data.Provider.dll
C:\Users\DieSonne99\Desktop\Sdaleo\!app\bin\x86\Release\Sdaleo.pdb
\\192.168.1.67\St.Clair\local_git\Sdaleo\!app\bin\x86\Release\!app.exe.config
\\192.168.1.67\St.Clair\local_git\Sdaleo\!app\obj\Release\!app.exe
\\192.168.1.67\St.Clair\local_git\Sdaleo\!app\obj\Release\!app.pdb

40
.gitignore vendored Normal file
View File

@@ -0,0 +1,40 @@
#ignore thumbnails created by windows
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Mac desktop service store files
.DS_Store
#Ignore files build by Visual Studio
*.obj
*.exe
*.pdb
*.user
*.aps
*.pch
*.vspscc
*_i.c
*_p.c
*.ncb
*.suo
*.tlb
*.tlh
*.bak
*.cache
*.ilk
*.log
[Bb]in
[Dd]ebug*/
*.lib
*.sbr
obj/
[Rr]elease*/
_ReSharper*/
[Tt]est[Rr]esult*

View File

@@ -10,7 +10,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Sdaleo</RootNamespace>
<AssemblyName>Sdaleo</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SccProjectName>
</SccProjectName>
@@ -31,15 +31,17 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE;NET35 ADVANTAGE</DefineConstants>
<DefineConstants>TRACE;NET40 SQLSERVER</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<PlatformTarget>AnyCPU</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Advantage.Data.Provider">

Binary file not shown.

Binary file not shown.

View File

@@ -30,3 +30,11 @@ C:\Users\DieSonne99\Desktop\Sdaleo\bin\x86\Release\Devart.Data.dll
C:\Users\DieSonne99\Desktop\Sdaleo\bin\x86\Release\Devart.Data.PostgreSql.dll
C:\Users\DieSonne99\Desktop\Sdaleo\obj\Release\Sdaleo.dll
C:\Users\DieSonne99\Desktop\Sdaleo\obj\Release\Sdaleo.pdb
\\192.168.1.67\St.Clair\local_git\Sdaleo\bin\x86\Release\Sdaleo.dll
\\192.168.1.67\St.Clair\local_git\Sdaleo\bin\x86\Release\Sdaleo.pdb
\\192.168.1.67\St.Clair\local_git\Sdaleo\bin\x86\Release\Advantage.Data.Provider.dll
\\192.168.1.67\St.Clair\local_git\Sdaleo\bin\x86\Release\Devart.Data.dll
\\192.168.1.67\St.Clair\local_git\Sdaleo\bin\x86\Release\Devart.Data.PostgreSql.dll
\\192.168.1.67\St.Clair\local_git\Sdaleo\obj\Release\Sdaleo.csprojResolveAssemblyReference.cache
\\192.168.1.67\St.Clair\local_git\Sdaleo\obj\Release\Sdaleo.dll
\\192.168.1.67\St.Clair\local_git\Sdaleo\obj\Release\Sdaleo.pdb

Binary file not shown.

Binary file not shown.