-
Notifications
You must be signed in to change notification settings - Fork 255
Expand file tree
/
Copy pathBuildBrowserExtensionFullPageScreenshots.csproj
More file actions
48 lines (47 loc) · 2.96 KB
/
BuildBrowserExtensionFullPageScreenshots.csproj
File metadata and controls
48 lines (47 loc) · 2.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\..\SharedAssemblyInfo.targets" />
<ItemGroup>
<Content Include="FullPageScreenshotsExtension-Chrome\background.js" />
<Content Include="FullPageScreenshotsExtension-Chrome\contentScript.js" />
<Content Include="FullPageScreenshotsExtension-Chrome\html2canvas.js" />
<Content Include="FullPageScreenshotsExtension-Chrome\icon.png" />
<Content Include="FullPageScreenshotsExtension-Chrome\popup.html" />
<Content Include="FullPageScreenshotsExtension-Edge\background.html" />
<Content Include="FullPageScreenshotsExtension-Edge\background.js" />
<Content Include="FullPageScreenshotsExtension-Edge\backgroundScriptsAPIBridge.js" />
<Content Include="FullPageScreenshotsExtension-Edge\contentScript.js" />
<Content Include="FullPageScreenshotsExtension-Edge\contentScriptsAPIBridge.js" />
<Content Include="FullPageScreenshotsExtension-Edge\html2canvas.js" />
<Content Include="FullPageScreenshotsExtension-Edge\icon.png" />
<Content Include="FullPageScreenshotsExtension-Edge\popup.html" />
<Content Include="FullPageScreenshotsExtension-Firefox\background.js" />
<Content Include="FullPageScreenshotsExtension-Firefox\contentScript.js" />
<Content Include="FullPageScreenshotsExtension-Firefox\html2canvas.js" />
<Content Include="FullPageScreenshotsExtension-Firefox\icon.png" />
<Content Include="FullPageScreenshotsExtension-Firefox\popup.html" />
<Content Include="readme-25.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Selenium.Firefox.WebDriver" Version="*" />
<PackageReference Include="Selenium.Support" Version="3.141.0" />
<PackageReference Include="Selenium.WebDriver" Version="3.141.0" />
<PackageReference Include="DotNetSeleniumExtras.PageObjects.Core" Version="3.12.0" />
<PackageReference Include="DotNetSeleniumExtras.WaitHelpers" Version="3.11.0" />
<PackageReference Include="Selenium.WebDriver.ChromeDriver" Version="*" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
<PackageReference Include="NUnit" Version="*" />
<PackageReference Include="NUnit3TestAdapter" Version="*">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<!--<PropertyGroup>
<PostBuildEvent>xcopy $(ProjectDir)FullPageScreenshotsExtension-Chrome\* $(ProjectDir)$(OutDir)FullPageScreenshotsExtension-Chrome\ /Y /I /E
xcopy $(ProjectDir)FullPageScreenshotsExtension-Edge\* $(ProjectDir)$(OutDir)FullPageScreenshotsExtension-Edge\ /Y /I /E
xcopy $(ProjectDir)FullPageScreenshotsExtension-Firefox\* $(ProjectDir)$(OutDir)FullPageScreenshotsExtension-Firefox\ /Y /I /E</PostBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PreBuildEvent>rd /s /q "$(TargetDir)"</PreBuildEvent>
</PropertyGroup>-->
</Project>