Compare commits
8 Commits
Standortän
...
dev-mkoebi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a75c853e79 | ||
|
|
70dd3f0a3a | ||
|
|
4eba0b5139 | ||
|
|
7682bd2fd6 | ||
|
|
690626582e | ||
|
|
e56cb114fa | ||
|
|
a67f9ff77f | ||
|
|
6d4b5a15fc |
@@ -12,15 +12,13 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<COMReference Include="Microsoft.Office.Interop.Excel">
|
<PackageReference Include="Microsoft.Office.Interop.Excel" Version="16.0.0.0" />
|
||||||
<WrapperTool>tlbimp</WrapperTool>
|
<PackageReference Include="ODP.NetCore" Version="2.0.12" />
|
||||||
<VersionMinor>8</VersionMinor>
|
<PackageReference Include="System.Data.SqlClient" Version="4.9.1" />
|
||||||
<VersionMajor>1</VersionMajor>
|
</ItemGroup>
|
||||||
<Guid>00020813-0000-0000-c000-000000000046</Guid>
|
|
||||||
<Lcid>0</Lcid>
|
<ItemGroup>
|
||||||
<Isolated>false</Isolated>
|
<Folder Include="config\" />
|
||||||
<EmbedInteropTypes>true</EmbedInteropTypes>
|
|
||||||
</COMReference>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
38
config/Jenkinsfile
vendored
Normal file
38
config/Jenkinsfile
vendored
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
pipeline
|
||||||
|
{
|
||||||
|
agent
|
||||||
|
{
|
||||||
|
node
|
||||||
|
{
|
||||||
|
label 'Jenkins_Homer'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stages
|
||||||
|
{
|
||||||
|
stage('Build')
|
||||||
|
{
|
||||||
|
steps
|
||||||
|
{
|
||||||
|
bat "dotnet --list-sdks"
|
||||||
|
bat "\"${tool 'MSBuild17'}\" ${WORKSPACE}\\MergeCMInpro.csproj /t:Restore /t:Rebuild /p:Configuration=Release"
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
stage('SonarQube')
|
||||||
|
{
|
||||||
|
environment
|
||||||
|
{
|
||||||
|
scannerHome = tool 'sonar-scanner4.4'
|
||||||
|
project = 'mergecminpro'
|
||||||
|
token = 'sqa_07d4e3802cf6283fc38a002e75bd0a5eb158af87'
|
||||||
|
}
|
||||||
|
steps
|
||||||
|
{
|
||||||
|
withSonarQubeEnv('SonarQube_Homer')
|
||||||
|
{
|
||||||
|
bat "${scannerHome}/bin/sonar-scanner -Dsonar.projectKey=${project} -Dsonar.login=${token}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user