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

Remove packages.config from UI project #8950

Open
wants to merge 2 commits into
base: main
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
12 changes: 7 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
version: "{build}"

image: Visual Studio 2022

platform:
Expand All @@ -8,14 +7,17 @@ platform:
configuration:
- Release

environment:
EnableNuGetPackageRestore: false

build_script:
- msbuild "SubtitleEdit.sln" /r /v:minimal /clp:summary /p:"Platform=%PLATFORM%" /p:"Configuration=%CONFIGURATION%" /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
- dotnet build "SubtitleEdit.sln" --configuration %CONFIGURATION%

test_script:
- vstest.console "src\Test\bin\%CONFIGURATION%\Test.dll" /logger:Appveyor
- dotnet test "src/Test/Test.csproj" --configuration %CONFIGURATION% --logger:trx

cache:
- 'packages -> **\src\ui\packages.config'
- packages -> **\Directory.Packages.props

matrix:
fast_finish: true
fast_finish: true
2 changes: 1 addition & 1 deletion src/ui/SubtitleEdit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<MapFileExtensions>true</MapFileExtensions>
<OutputType>WinExe</OutputType>
<PublishWizardCompleted>true</PublishWizardCompleted>
<RestorePackages>true</RestorePackages>
<RestorePackages>false</RestorePackages>
<RootNamespace>Nikse.SubtitleEdit</RootNamespace>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">.\</SolutionDir>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
Expand Down
15 changes: 0 additions & 15 deletions src/ui/packages.config

This file was deleted.