Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Standardize #1

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 82 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
init:
- ps: if ($env:APPVEYOR_REPO_TAG -eq "true") { $env:TAG_VERSION = "$env:APPVEYOR_REPO_TAG_NAME.$env:APPVEYOR_BUILD_NUMBER" } else { $env:TAG_VERSION = "v1.0.0.$env:APPVEYOR_BUILD_NUMBER-alpha" }
- ps: $env:TAG_VERSION = $env:TAG_VERSION -replace 'v',''
- ps: Write-Host "Setting version to '$env:TAG_VERSION'"
- ps: Update-AppveyorBuild -Version "$env:TAG_VERSION"

image:
- Visual Studio 2017
- Ubuntu

configuration: Release

platform:
- x64

pull_requests:
do_not_increment_build_number: false

nuget:
disable_publish_on_pr: true

skip_commits:
files:
- doc/*
- README.md
- .gitignore
- LICENSE

cache:
- packages -> **\packages.config
- '%LocalAppData%\NuGet\Cache'

assembly_info:
patch: true
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'

before_build:
- ps: |
if ($isLinux) {
$env:EDITION = "mono"
} else {
$env:EDITION = "dotnet"
}
- nuget restore HalcyonImportExport.sln

build:
project: HalcyonImportExport.sln
parallel: true
verbosity: minimal
publish_nuget: false
publish_nuget_symbols: false
for:
-
matrix:
only:
- image: Ubuntu
build_script:
- msbuild HalcyonImportExport.sln

after_build:
- ps: Set-Location "$env:APPVEYOR_BUILD_FOLDER"
- ps: Rename-Item -Path bin -NewName halcyon-import-export

# No tests for now.
test: off

artifacts:
- path: halcyon-import-export
name: halcyon-import-export-$(APPVEYOR_BUILD_VERSION)-$(APPVEYOR_REPO_BRANCH)-$(EDITION)
type: zip

deploy:
provider: GitHub
auth_token:
secure: DlRS0U90AATbPkzxigCLwaGe1vguHFeC3a0YhMZRA/OYEbLQ8+ybp2OGfqgwpbW4
artifact: halcyon-import-export-$(APPVEYOR_BUILD_VERSION)-$(APPVEYOR_REPO_BRANCH)-$(EDITION)
draft: true
prerelease: false
on:
APPVEYOR_REPO_TAG: true
30 changes: 16 additions & 14 deletions HcImportExport/HcImportExport.sln → HalcyonImportExport.sln
Original file line number Diff line number Diff line change
@@ -1,38 +1,40 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.23107.0
# Visual Studio 15
VisualStudioVersion = 15.0.28010.2048
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InWorldz.Halcyon.OpenSim.ImpExp", "InWorldz.Halcyon.OpenSim.ImpExp\InWorldz.Halcyon.OpenSim.ImpExp.csproj", "{9683B2E3-80CD-4321-9E64-1BA2968A1892}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InWorldz.Halcyon.OpenSim.ImpExp", "Source\InWorldz.Halcyon.OpenSim.ImpExp\InWorldz.Halcyon.OpenSim.ImpExp.csproj", "{9683B2E3-80CD-4321-9E64-1BA2968A1892}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "hc-import", "hc-import\hc-import.csproj", "{D2CBD3D5-F7A8-4E71-A58E-071382879B8B}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "hc-import", "Source\hc-import\hc-import.csproj", "{D2CBD3D5-F7A8-4E71-A58E-071382879B8B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{290A21F2-BAA6-42DE-97A0-A32946E30CF0}"
ProjectSection(SolutionItems) = preProject
.appveyor.yml = .appveyor.yml
.gitattributes = .gitattributes
.gitignore = .gitignore
LICENSE = LICENSE
README.md = README.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{9683B2E3-80CD-4321-9E64-1BA2968A1892}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9683B2E3-80CD-4321-9E64-1BA2968A1892}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9683B2E3-80CD-4321-9E64-1BA2968A1892}.Debug|x64.ActiveCfg = Debug|x64
{9683B2E3-80CD-4321-9E64-1BA2968A1892}.Debug|x64.Build.0 = Debug|x64
{9683B2E3-80CD-4321-9E64-1BA2968A1892}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9683B2E3-80CD-4321-9E64-1BA2968A1892}.Release|Any CPU.Build.0 = Release|Any CPU
{9683B2E3-80CD-4321-9E64-1BA2968A1892}.Release|x64.ActiveCfg = Release|x64
{9683B2E3-80CD-4321-9E64-1BA2968A1892}.Release|x64.Build.0 = Release|x64
{D2CBD3D5-F7A8-4E71-A58E-071382879B8B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D2CBD3D5-F7A8-4E71-A58E-071382879B8B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D2CBD3D5-F7A8-4E71-A58E-071382879B8B}.Debug|x64.ActiveCfg = Debug|x64
{D2CBD3D5-F7A8-4E71-A58E-071382879B8B}.Debug|x64.Build.0 = Debug|x64
{D2CBD3D5-F7A8-4E71-A58E-071382879B8B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D2CBD3D5-F7A8-4E71-A58E-071382879B8B}.Release|Any CPU.Build.0 = Release|Any CPU
{D2CBD3D5-F7A8-4E71-A58E-071382879B8B}.Release|x64.ActiveCfg = Release|x64
{D2CBD3D5-F7A8-4E71-A58E-071382879B8B}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {D16A6E81-EA2F-4A74-9AE9-E61F540783A8}
EndGlobalSection
EndGlobal

This file was deleted.

This file was deleted.

6 changes: 0 additions & 6 deletions HcImportExport/hc-import/App.config

This file was deleted.

48 changes: 0 additions & 48 deletions HcImportExport/hc-import/Program.cs

This file was deleted.

Loading