Compare commits
4 Commits
Standortän
...
690626582e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
690626582e | ||
|
|
e56cb114fa | ||
|
|
a67f9ff77f | ||
|
|
6d4b5a15fc |
@@ -1,3 +1,4 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
@@ -12,6 +13,16 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<<<<<<< HEAD
|
||||||
|
<PackageReference Include="Microsoft.Office.Interop.Excel" Version="16.0.18925.20022" />
|
||||||
|
<PackageReference Include="NLog" Version="4.7.11" />
|
||||||
|
<PackageReference Include="ODP.NetCore" Version="2.0.12" />
|
||||||
|
<PackageReference Include="System.Data.SqlClient" Version="4.9.1" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Folder Include="config\" />
|
||||||
|
=======
|
||||||
<COMReference Include="Microsoft.Office.Interop.Excel">
|
<COMReference Include="Microsoft.Office.Interop.Excel">
|
||||||
<WrapperTool>tlbimp</WrapperTool>
|
<WrapperTool>tlbimp</WrapperTool>
|
||||||
<VersionMinor>8</VersionMinor>
|
<VersionMinor>8</VersionMinor>
|
||||||
@@ -21,6 +32,7 @@
|
|||||||
<Isolated>false</Isolated>
|
<Isolated>false</Isolated>
|
||||||
<EmbedInteropTypes>true</EmbedInteropTypes>
|
<EmbedInteropTypes>true</EmbedInteropTypes>
|
||||||
</COMReference>
|
</COMReference>
|
||||||
|
>>>>>>> Standortänderung
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
37
config/Jenkinsfile
vendored
Normal file
37
config/Jenkinsfile
vendored
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
pipeline
|
||||||
|
{
|
||||||
|
agent
|
||||||
|
{
|
||||||
|
node
|
||||||
|
{
|
||||||
|
label 'Jenkins_Homer'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stages
|
||||||
|
{
|
||||||
|
stage('Build')
|
||||||
|
{
|
||||||
|
steps
|
||||||
|
{
|
||||||
|
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