Skip to content

Commit 41f1d03

Browse files
committed
F Bumped version
1 parent 05e8ac5 commit 41f1d03

4 files changed

Lines changed: 37 additions & 53 deletions

File tree

src/Directory.Build.props

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<Project>
2+
<PropertyGroup>
3+
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
4+
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
5+
<Nullable>disable</Nullable>
6+
<Title>$(ProjectName)</Title>
7+
<Version>0.0.8</Version>
8+
<Authors>Lukas Volf</Authors>
9+
<Copyright>MIT</Copyright>
10+
<PackageProjectUrl>https://github.com/jimm98y/SharpRealTimeStreaming</PackageProjectUrl>
11+
<PackageReadmeFile>README.md</PackageReadmeFile>
12+
<RepositoryUrl>https://github.com/jimm98y/SharpRealTimeStreaming</RepositoryUrl>
13+
<RepositoryType>git</RepositoryType>
14+
<PackageTags>rtsp;rtp;video;streaming;h264;h265;aac;netstandard20</PackageTags>
15+
<NeutralLanguage>en-US</NeutralLanguage>
16+
<AssemblyVersion>1.0.0</AssemblyVersion>
17+
<FileVersion>$(Version)</FileVersion>
18+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
19+
<Description>Simple RTSP client and server. Supports H264, H265 and AAC.</Description>
20+
</PropertyGroup>
21+
<ItemGroup>
22+
<None Include="..\..\README.md">
23+
<Pack>True</Pack>
24+
<PackagePath>\</PackagePath>
25+
</None>
26+
</ItemGroup>
27+
28+
<PropertyGroup>
29+
<PackageOutputPath>$(ProjectDir)..\..\nugets</PackageOutputPath>
30+
</PropertyGroup>
31+
</Project>

src/SharpRTSPClient/SharpRTSPClient.csproj

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,4 @@
88
<PackageReference Include="SharpRTSP" Version="1.8.0" />
99
</ItemGroup>
1010

11-
<PropertyGroup>
12-
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
13-
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
14-
<Nullable>disable</Nullable>
15-
<Title>$(ProjectName)</Title>
16-
<Version>0.0.7</Version>
17-
<Authors>Lukas Volf</Authors>
18-
<Copyright>MIT</Copyright>
19-
<PackageProjectUrl>https://github.com/jimm98y/SharpRealTimeStreaming</PackageProjectUrl>
20-
<PackageReadmeFile>README.md</PackageReadmeFile>
21-
<RepositoryUrl>https://github.com/jimm98y/SharpRealTimeStreaming</RepositoryUrl>
22-
<RepositoryType>git</RepositoryType>
23-
<PackageTags>rtsp;rtp;video;streaming;h264;h265;aac;netstandard20</PackageTags>
24-
<NeutralLanguage>en-US</NeutralLanguage>
25-
<AssemblyVersion>1.0.0</AssemblyVersion>
26-
<FileVersion>$(Version)</FileVersion>
27-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
28-
<Description>Simple RTSP client. Supports H264, H265 and AAC.</Description>
29-
</PropertyGroup>
30-
<ItemGroup>
31-
<None Include="..\..\README.md">
32-
<Pack>True</Pack>
33-
<PackagePath>\</PackagePath>
34-
</None>
35-
</ItemGroup>
36-
3711
</Project>

src/SharpRTSPServer/SharpRTSPServer.csproj

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,5 @@
77
<ItemGroup>
88
<PackageReference Include="SharpRTSP" Version="1.8.0" />
99
</ItemGroup>
10-
11-
<PropertyGroup>
12-
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
13-
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
14-
<Nullable>disable</Nullable>
15-
<Title>$(ProjectName)</Title>
16-
<Version>0.0.7</Version>
17-
<Authors>Lukas Volf</Authors>
18-
<Copyright>MIT</Copyright>
19-
<PackageProjectUrl>https://github.com/jimm98y/SharpRealTimeStreaming</PackageProjectUrl>
20-
<PackageReadmeFile>README.md</PackageReadmeFile>
21-
<RepositoryUrl>https://github.com/jimm98y/SharpRealTimeStreaming</RepositoryUrl>
22-
<RepositoryType>git</RepositoryType>
23-
<PackageTags>rtsp;rtp;video;streaming;h264;h265;aac;netstandard20</PackageTags>
24-
<NeutralLanguage>en-US</NeutralLanguage>
25-
<AssemblyVersion>1.0.0</AssemblyVersion>
26-
<FileVersion>$(Version)</FileVersion>
27-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
28-
<Description>Simple RTSP server. Supports H264, H265 and AAC.</Description>
29-
</PropertyGroup>
30-
<ItemGroup>
31-
<None Include="..\..\README.md">
32-
<Pack>True</Pack>
33-
<PackagePath>\</PackagePath>
34-
</None>
35-
</ItemGroup>
36-
10+
3711
</Project>

src/SharpRealTimeStreaming.sln

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RTSPServerFFmpeg", "RTSPSer
1717
EndProject
1818
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RTSPServerPcap", "RTSPServerPcap\RTSPServerPcap.csproj", "{CFADBA74-C3EA-4B86-B800-43ECF68D77C4}"
1919
EndProject
20+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8EC462FD-D22E-90A8-E5CE-7E832BA40C5D}"
21+
ProjectSection(SolutionItems) = preProject
22+
Directory.Build.props = Directory.Build.props
23+
EndProjectSection
24+
EndProject
2025
Global
2126
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2227
Debug|Any CPU = Debug|Any CPU

0 commit comments

Comments
 (0)