Skip to content

Commit 239cbe0

Browse files
committed
Test against ATEM library 7.3
Update versioning and about info.
1 parent fe3a56b commit 239cbe0

6 files changed

Lines changed: 26 additions & 15 deletions

File tree

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/Release
2+
/SwitcherLib/bin
3+
/MediaPool/bin
4+
/MediaUpload/bin
5+
/SwitcherLib/obj
6+
/MediaPool/obj
7+
/MediaUpload/obj
8+
/packages

MediaPool/Properties/AssemblyInfo.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
[assembly: AssemblyTitle("ATEM Media Pool List")]
99
[assembly: AssemblyDescription("Retrieves a list of media in the media pool of an ATEM Switcher")]
1010
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("Michael Smith")]
11+
[assembly: AssemblyCompany("Jessica Smith")]
1212
[assembly: AssemblyProduct("ATEM Switcher Library")]
13-
[assembly: AssemblyCopyright("© Copyright Michael Smith, 2014")]
13+
[assembly: AssemblyCopyright("© Copyright Jessica Smith, 2014")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("2.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("2.0.1.0")]
36+
[assembly: AssemblyFileVersion("2.0.1.0")]

MediaUpload/Properties/AssemblyInfo.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
[assembly: AssemblyTitle("ATEM Media Upload")]
99
[assembly: AssemblyDescription("Uploads still images to the media library of ATEM switchers")]
1010
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("Michael Smith")]
11+
[assembly: AssemblyCompany("Jessica Smith")]
1212
[assembly: AssemblyProduct("ATEM Switcher Library")]
13-
[assembly: AssemblyCopyright("© Copyright Michael Smith, 2014")]
13+
[assembly: AssemblyCopyright("© Copyright Jessica Smith, 2014")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("2.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("2.0.1.0")]
36+
[assembly: AssemblyFileVersion("2.0.1.0")]

Prep Release.cmd

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ xcopy MediaPool\bin\release\MediaPool.exe Release /C /H /Y
44
xcopy MediaPool\bin\release\*.dll Release /C /H /Y
55
xcopy MediaUpload\bin\release\MediaUpload.exe Release /C /H /Y
66
xcopy MediaUpload\bin\release\*.dll Release /C /H /Y
7-
cp readme.txt Release/readme.txt
7+
xcopy readme.md Release\readme.md /C /H /Y
8+
pause

SwitcherLib/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("SwitcherLib")]
8+
[assembly: AssemblyTitle("ATEM Switcher Library")]
99
[assembly: AssemblyDescription("")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("SwitcherLib")]
13-
[assembly: AssemblyCopyright("Copyright © 2014")]
12+
[assembly: AssemblyProduct("ATEM Switcher Library")]
13+
[assembly: AssemblyCopyright("© Copyright Jessica Smith, 2014")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("2.0.1.0")]
36+
[assembly: AssemblyFileVersion("2.0.1.0")]

SwitcherLib/SwitcherLib.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@
5050
<Compile Include="Properties\AssemblyInfo.cs" />
5151
<Compile Include="SwitcherLibException.cs" />
5252
</ItemGroup>
53+
<ItemGroup>
54+
<WCFMetadata Include="Service References\" />
55+
</ItemGroup>
5356
<ItemGroup>
5457
<COMReference Include="BMDSwitcherAPI">
5558
<Guid>{8A92B919-156C-4D61-94EF-03F9BE4004B0}</Guid>
@@ -61,7 +64,6 @@
6164
<EmbedInteropTypes>True</EmbedInteropTypes>
6265
</COMReference>
6366
</ItemGroup>
64-
<ItemGroup />
6567
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
6668
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
6769
Other similar extension points exist, see Microsoft.Common.targets.

0 commit comments

Comments
 (0)